summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/expand
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-25 21:31:58 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-26 18:22:20 +0100
commit5e21a413c788f839a66d9e4c14e745ed18058db8 (patch)
treed4451246461346a425ad6f796e08bf1514cdd942 /ucb/source/ucp/expand
parent6fc2bd0094a23aafadeef3f4a8c2803d621a588d (diff)
cppuhelper: retrofit std::exception into overriding exception specs
Change-Id: I56e32131b7991ee9948ce46765632eb823d463b3
Diffstat (limited to 'ucb/source/ucp/expand')
-rw-r--r--ucb/source/ucp/expand/ucpexpand.cxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/ucb/source/ucp/expand/ucpexpand.cxx b/ucb/source/ucp/expand/ucpexpand.cxx
index 5bdbcce7e6c5..3b335b4ff9bb 100644
--- a/ucb/source/ucp/expand/ucpexpand.cxx
+++ b/ucb/source/ucp/expand/ucpexpand.cxx
@@ -73,20 +73,20 @@ public:
// XServiceInfo
virtual OUString SAL_CALL getImplementationName()
- throw (uno::RuntimeException);
+ throw (uno::RuntimeException, std::exception);
virtual sal_Bool SAL_CALL supportsService( OUString const & serviceName )
- throw (uno::RuntimeException);
+ throw (uno::RuntimeException, std::exception);
virtual uno::Sequence< OUString > SAL_CALL getSupportedServiceNames()
- throw (uno::RuntimeException);
+ throw (uno::RuntimeException, std::exception);
// XContentProvider
virtual uno::Reference< ucb::XContent > SAL_CALL queryContent(
uno::Reference< ucb::XContentIdentifier > const & xIdentifier )
- throw (ucb::IllegalIdentifierException, uno::RuntimeException);
+ throw (ucb::IllegalIdentifierException, uno::RuntimeException, std::exception);
virtual sal_Int32 SAL_CALL compareContentIds(
uno::Reference< ucb::XContentIdentifier > const & xId1,
uno::Reference< ucb::XContentIdentifier > const & xId2 )
- throw (uno::RuntimeException);
+ throw (uno::RuntimeException, std::exception);
};
@@ -142,7 +142,7 @@ static uno::Sequence< OUString > SAL_CALL supportedServices()
// XServiceInfo
OUString ExpandContentProviderImpl::getImplementationName()
- throw (uno::RuntimeException)
+ throw (uno::RuntimeException, std::exception)
{
check();
return implName();
@@ -150,14 +150,14 @@ OUString ExpandContentProviderImpl::getImplementationName()
uno::Sequence< OUString > ExpandContentProviderImpl::getSupportedServiceNames()
- throw (uno::RuntimeException)
+ throw (uno::RuntimeException, std::exception)
{
check();
return supportedServices();
}
sal_Bool ExpandContentProviderImpl::supportsService(OUString const & serviceName )
- throw (uno::RuntimeException)
+ throw (uno::RuntimeException, std::exception)
{
return cppu::supportsService(this, serviceName);
}
@@ -186,7 +186,7 @@ OUString ExpandContentProviderImpl::expandUri(
uno::Reference< ucb::XContent > ExpandContentProviderImpl::queryContent(
uno::Reference< ucb::XContentIdentifier > const & xIdentifier )
- throw (ucb::IllegalIdentifierException, uno::RuntimeException)
+ throw (ucb::IllegalIdentifierException, uno::RuntimeException, std::exception)
{
check();
OUString uri( expandUri( xIdentifier ) );
@@ -208,7 +208,7 @@ uno::Reference< ucb::XContent > ExpandContentProviderImpl::queryContent(
sal_Int32 ExpandContentProviderImpl::compareContentIds(
uno::Reference< ucb::XContentIdentifier > const & xId1,
uno::Reference< ucb::XContentIdentifier > const & xId2 )
- throw (uno::RuntimeException)
+ throw (uno::RuntimeException, std::exception)
{
check();
try