diff options
Diffstat (limited to 'xmlsecurity/source/xmlsec/serialnumberadapter.cxx')
-rw-r--r-- | xmlsecurity/source/xmlsec/serialnumberadapter.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/xmlsecurity/source/xmlsec/serialnumberadapter.cxx b/xmlsecurity/source/xmlsec/serialnumberadapter.cxx index c441c48b44c6..b41e343376d5 100644 --- a/xmlsecurity/source/xmlsec/serialnumberadapter.cxx +++ b/xmlsecurity/source/xmlsec/serialnumberadapter.cxx @@ -50,25 +50,25 @@ private: virtual ~Service() {} virtual OUString SAL_CALL getImplementationName() - throw (css::uno::RuntimeException) + throw (css::uno::RuntimeException, std::exception) { return xml_security::serial_number_adapter::implementationName(); } virtual sal_Bool SAL_CALL supportsService(OUString const & ServiceName) - throw (css::uno::RuntimeException) + throw (css::uno::RuntimeException, std::exception) { return cppu::supportsService(this, ServiceName); } virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() - throw (css::uno::RuntimeException) + throw (css::uno::RuntimeException, std::exception) { return xml_security::serial_number_adapter::serviceNames(); } virtual OUString SAL_CALL toString( css::uno::Sequence< sal_Int8 > const & SerialNumber) - throw (css::uno::RuntimeException) + throw (css::uno::RuntimeException, std::exception) { return bigIntegerToNumericString(SerialNumber); } virtual css::uno::Sequence< sal_Int8 > SAL_CALL toSequence( OUString const & SerialNumber) - throw (css::uno::RuntimeException) + throw (css::uno::RuntimeException, std::exception) { return numericStringToBigInteger(SerialNumber); } }; |