summaryrefslogtreecommitdiff
path: root/include/ucbhelper/contentidentifier.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/ucbhelper/contentidentifier.hxx')
-rw-r--r--include/ucbhelper/contentidentifier.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/ucbhelper/contentidentifier.hxx b/include/ucbhelper/contentidentifier.hxx
index 7f95634578ed..6203a20d9777 100644
--- a/include/ucbhelper/contentidentifier.hxx
+++ b/include/ucbhelper/contentidentifier.hxx
@@ -51,7 +51,7 @@ public:
// XInterface
virtual com::sun::star::uno::Any SAL_CALL
queryInterface( const com::sun::star::uno::Type & rType )
- throw( com::sun::star::uno::RuntimeException );
+ throw( com::sun::star::uno::RuntimeException, std::exception );
virtual void SAL_CALL
acquire() throw();
virtual void SAL_CALL
@@ -60,18 +60,18 @@ public:
// XTypeProvider
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL
getImplementationId()
- throw( com::sun::star::uno::RuntimeException );
+ throw( com::sun::star::uno::RuntimeException, std::exception );
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL
getTypes()
- throw( com::sun::star::uno::RuntimeException );
+ throw( com::sun::star::uno::RuntimeException, std::exception );
// XContentIdentifier
virtual OUString SAL_CALL
getContentIdentifier()
- throw( com::sun::star::uno::RuntimeException );
+ throw( com::sun::star::uno::RuntimeException, std::exception );
virtual OUString SAL_CALL
getContentProviderScheme()
- throw( com::sun::star::uno::RuntimeException );
+ throw( com::sun::star::uno::RuntimeException, std::exception );
private:
ContentIdentifier_Impl* m_pImpl;