diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-06-28 16:42:02 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-06-28 17:55:48 +0100 |
commit | a4fdbaf54644b5eb576d5fb89121fb0aa2c5b0d4 (patch) | |
tree | 1369f52fe65d1d00dbf2a992f3b30747fa06360f /scripting | |
parent | 5d6091da85c526bb82e5504b552ab30be0ac4b0e (diff) |
coverity#1308512 Uncaught exception
Change-Id: Iacdf2e25fb041ec7e2bae8a505604ef538ee9dac
Diffstat (limited to 'scripting')
-rw-r--r-- | scripting/source/stringresource/stringresource.cxx | 2 | ||||
-rw-r--r-- | scripting/source/stringresource/stringresource.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/scripting/source/stringresource/stringresource.cxx b/scripting/source/stringresource/stringresource.cxx index 542f33188111..c2d41831a27f 100644 --- a/scripting/source/stringresource/stringresource.cxx +++ b/scripting/source/stringresource/stringresource.cxx @@ -1183,7 +1183,7 @@ void StringResourcePersistenceImpl::implStoreAtLocation bool bStoreAll, bool bKillAll ) - throw (Exception, RuntimeException) + throw (Exception, RuntimeException, std::exception) { // Delete files for deleted locales if( bUsedForStore || bKillAll ) diff --git a/scripting/source/stringresource/stringresource.hxx b/scripting/source/stringresource/stringresource.hxx index a9c51178dda2..069cb14da43f 100644 --- a/scripting/source/stringresource/stringresource.hxx +++ b/scripting/source/stringresource/stringresource.hxx @@ -309,7 +309,7 @@ protected: bool bStoreAll, bool bKillAll = false ) - throw (::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException); + throw (::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException, std::exception); public: StringResourcePersistenceImpl( |