diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-07-11 20:17:26 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-07-13 20:10:49 +0100 |
commit | b03675889d426cbafa302e7ed6dc385d2bf2708e (patch) | |
tree | 20a4bf329d72902652237a0885e936cfe603cb50 /comphelper | |
parent | d0a7a60cfa1a34ec7218656489b7463cd9eb1aad (diff) |
coverity#706281 Uncaught exception
Change-Id: I469b812c666801db5e3a6fac1d6152afd80cf39a
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/property/MasterPropertySet.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/comphelper/source/property/MasterPropertySet.cxx b/comphelper/source/property/MasterPropertySet.cxx index c5a59da90cbc..50f3b39dee3c 100644 --- a/comphelper/source/property/MasterPropertySet.cxx +++ b/comphelper/source/property/MasterPropertySet.cxx @@ -292,7 +292,7 @@ Sequence< Any > SAL_CALL MasterPropertySet::getPropertyValues( const Sequence< O { aIter = mpInfo->maMap.find ( *pString ); if ( aIter == aEnd ) - throw UnknownPropertyException( *pString, static_cast< XPropertySet* >( this ) ); + throw RuntimeException( *pString, static_cast< XPropertySet* >( this ) ); if ( (*aIter).second->mnMapId == 0 ) // 0 means it's one of ours ! _getSingleValue( *((*aIter).second->mpInfo), *pAny ); |