summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-07-11 20:19:37 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-07-13 20:10:49 +0100
commit136fa5432d5d10743373488de9de39a6198b8690 (patch)
tree20af6024c3e5a955a91a4d912133e01d321056df
parentb03675889d426cbafa302e7ed6dc385d2bf2708e (diff)
coverity#706282 Uncaught exception
Change-Id: Icca233fdc6d841d1bf51f918b83f3eef2cd5952e
-rw-r--r--comphelper/source/property/MasterPropertySet.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/comphelper/source/property/MasterPropertySet.cxx b/comphelper/source/property/MasterPropertySet.cxx
index 50f3b39dee3c..a4fa97668c03 100644
--- a/comphelper/source/property/MasterPropertySet.cxx
+++ b/comphelper/source/property/MasterPropertySet.cxx
@@ -227,7 +227,7 @@ void SAL_CALL MasterPropertySet::setPropertyValues( const Sequence< OUString >&
{
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 !
_setSingleValue( *((*aIter).second->mpInfo), *pAny );