diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-25 13:50:59 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-25 20:19:12 +0100 |
commit | 69c8acdcb4805c2c0217633e0b0b874c88d11433 (patch) | |
tree | d59ef4c24872e568006a729f39d3b774b91a58c6 /comphelper | |
parent | 0eb160ef1316f99b5d6e894bfe8938f7b0927f66 (diff) |
coverity#706282 Uncaught exception
Change-Id: I495c558ed7692a0d2b669d9bc9cb62ed9ddc6665
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 ab80a032b5c9..ad8d0a23023f 100644 --- a/comphelper/source/property/MasterPropertySet.cxx +++ b/comphelper/source/property/MasterPropertySet.cxx @@ -197,7 +197,7 @@ void SAL_CALL MasterPropertySet::removeVetoableChangeListener( const OUString&, // XMultiPropertySet void SAL_CALL MasterPropertySet::setPropertyValues( const Sequence< OUString >& aPropertyNames, const Sequence< Any >& aValues ) - throw(PropertyVetoException, IllegalArgumentException, WrappedTargetException, RuntimeException, std::exception) + throw (UnknownPropertyException, PropertyVetoException, IllegalArgumentException, WrappedTargetException, RuntimeException, std::exception) { // acquire mutex in c-tor and releases it in the d-tor (exception safe!). boost::scoped_ptr< osl::Guard< comphelper::SolarMutex > > pMutexGuard; |