summaryrefslogtreecommitdiff
path: root/remotebridges/source/unourl_resolver/unourl_resolver.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'remotebridges/source/unourl_resolver/unourl_resolver.cxx')
-rw-r--r--remotebridges/source/unourl_resolver/unourl_resolver.cxx13
1 files changed, 4 insertions, 9 deletions
diff --git a/remotebridges/source/unourl_resolver/unourl_resolver.cxx b/remotebridges/source/unourl_resolver/unourl_resolver.cxx
index 7327e08fea50..b7a208f0892e 100644
--- a/remotebridges/source/unourl_resolver/unourl_resolver.cxx
+++ b/remotebridges/source/unourl_resolver/unourl_resolver.cxx
@@ -67,13 +67,12 @@ public:
explicit ResolverImpl( const Reference< XComponentContext > & xSMgr );
// XServiceInfo
- virtual OUString SAL_CALL getImplementationName() throw(css::uno::RuntimeException, std::exception) override;
- virtual sal_Bool SAL_CALL supportsService( const OUString & rServiceName ) throw(css::uno::RuntimeException, std::exception) override;
- virtual Sequence< OUString > SAL_CALL getSupportedServiceNames() throw(css::uno::RuntimeException, std::exception) override;
+ virtual OUString SAL_CALL getImplementationName() override;
+ virtual sal_Bool SAL_CALL supportsService( const OUString & rServiceName ) override;
+ virtual Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
// XUnoUrlResolver
- virtual Reference< XInterface > SAL_CALL resolve( const OUString & rUnoUrl )
- throw (NoConnectException, ConnectionSetupException, RuntimeException, std::exception) override;
+ virtual Reference< XInterface > SAL_CALL resolve( const OUString & rUnoUrl ) override;
};
ResolverImpl::ResolverImpl( const Reference< XComponentContext > & xCtx )
@@ -83,26 +82,22 @@ ResolverImpl::ResolverImpl( const Reference< XComponentContext > & xCtx )
// XServiceInfo
OUString ResolverImpl::getImplementationName()
- throw(css::uno::RuntimeException, std::exception)
{
return resolver_getImplementationName();
}
sal_Bool ResolverImpl::supportsService( const OUString & rServiceName )
- throw(css::uno::RuntimeException, std::exception)
{
return cppu::supportsService(this, rServiceName);
}
Sequence< OUString > ResolverImpl::getSupportedServiceNames()
- throw(css::uno::RuntimeException, std::exception)
{
return resolver_getSupportedServiceNames();
}
// XUnoUrlResolver
Reference< XInterface > ResolverImpl::resolve( const OUString & rUnoUrl )
- throw (NoConnectException, ConnectionSetupException, RuntimeException, std::exception)
{
OUString aProtocolDescr;
OUString aConnectDescr;