From 136fa5432d5d10743373488de9de39a6198b8690 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 11 Jul 2014 20:19:37 +0100 Subject: coverity#706282 Uncaught exception Change-Id: Icca233fdc6d841d1bf51f918b83f3eef2cd5952e --- comphelper/source/property/MasterPropertySet.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'comphelper') 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 ); -- cgit