summaryrefslogtreecommitdiff
path: root/cppuhelper
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-05-24 15:33:17 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-05-24 16:11:01 +0100
commit63387abb5b26225db61234d7b44ed3c2d5002003 (patch)
tree2a8fcf62ad5dbd320d74e9b94c0b3fd2225d1141 /cppuhelper
parentbcbf642c4c0d076230a7ba3f5c731a615047d871 (diff)
coverity#983624 Uncaught exception
Change-Id: Ifbd069199d725cd3b0fcc189cbcb2cf7a59f5ffb
Diffstat (limited to 'cppuhelper')
-rw-r--r--cppuhelper/source/macro_expander.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/cppuhelper/source/macro_expander.cxx b/cppuhelper/source/macro_expander.cxx
index f215c2a84d5e..f12c9ee96464 100644
--- a/cppuhelper/source/macro_expander.cxx
+++ b/cppuhelper/source/macro_expander.cxx
@@ -134,7 +134,7 @@ public:
// XMacroExpander impl
virtual OUString SAL_CALL expandMacros( OUString const & exp )
- throw (lang::IllegalArgumentException, std::exception) SAL_OVERRIDE;
+ throw (lang::IllegalArgumentException, uno::RuntimeException, std::exception) SAL_OVERRIDE;
// XServiceInfo impl
virtual OUString SAL_CALL getImplementationName()
throw (RuntimeException, std::exception) SAL_OVERRIDE;
@@ -174,7 +174,7 @@ Sequence< OUString > Bootstrap_MacroExpander::getSupportedServiceNames()
// XMacroExpander impl
OUString Bootstrap_MacroExpander::expandMacros( OUString const & exp )
- throw (lang::IllegalArgumentException, std::exception)
+ throw (lang::IllegalArgumentException, uno::RuntimeException, std::exception)
{
return cppuhelper::detail::expandMacros( exp );
}