summaryrefslogtreecommitdiff
path: root/include/ucbhelper/providerhelper.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/ucbhelper/providerhelper.hxx')
-rw-r--r--include/ucbhelper/providerhelper.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/ucbhelper/providerhelper.hxx b/include/ucbhelper/providerhelper.hxx
index f8fade48877e..f6f68040aeeb 100644
--- a/include/ucbhelper/providerhelper.hxx
+++ b/include/ucbhelper/providerhelper.hxx
@@ -158,13 +158,13 @@ public:
virtual OUString SAL_CALL
getImplementationName()
- throw( ::com::sun::star::uno::RuntimeException ) = 0;
+ throw( ::com::sun::star::uno::RuntimeException, std::exception ) = 0;
virtual sal_Bool SAL_CALL
supportsService( const OUString& ServiceName )
- throw( ::com::sun::star::uno::RuntimeException );
+ throw( ::com::sun::star::uno::RuntimeException, std::exception );
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL
getSupportedServiceNames()
- throw( ::com::sun::star::uno::RuntimeException ) = 0;
+ throw( ::com::sun::star::uno::RuntimeException, std::exception ) = 0;
//////////////////////////////////////////////////////////////////////
// XContentProvider
@@ -186,13 +186,13 @@ public:
queryContent( const ::com::sun::star::uno::Reference<
::com::sun::star::ucb::XContentIdentifier >& Identifier )
throw( ::com::sun::star::ucb::IllegalIdentifierException,
- ::com::sun::star::uno::RuntimeException ) = 0;
+ ::com::sun::star::uno::RuntimeException, std::exception ) = 0;
virtual sal_Int32 SAL_CALL
compareContentIds( const ::com::sun::star::uno::Reference<
::com::sun::star::ucb::XContentIdentifier >& Id1,
const ::com::sun::star::uno::Reference<
::com::sun::star::ucb::XContentIdentifier >& Id2 )
- throw( ::com::sun::star::uno::RuntimeException );
+ throw( ::com::sun::star::uno::RuntimeException, std::exception );
//////////////////////////////////////////////////////////////////////
// Non-interface methods.