summaryrefslogtreecommitdiff
path: root/include/oox/core/filterbase.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/oox/core/filterbase.hxx')
-rw-r--r--include/oox/core/filterbase.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/oox/core/filterbase.hxx b/include/oox/core/filterbase.hxx
index 1d9e0dbd1a96..96e488ccc441 100644
--- a/include/oox/core/filterbase.hxx
+++ b/include/oox/core/filterbase.hxx
@@ -202,15 +202,15 @@ public:
virtual OUString SAL_CALL
getImplementationName()
- throw( ::com::sun::star::uno::RuntimeException );
+ throw( ::com::sun::star::uno::RuntimeException, std::exception );
virtual sal_Bool SAL_CALL
supportsService( const OUString& rServiceName )
- 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 );
+ throw( ::com::sun::star::uno::RuntimeException, std::exception );
// com.sun.star.lang.XInitialization interface ----------------------------
@@ -227,30 +227,30 @@ public:
virtual void SAL_CALL initialize(
const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& rArgs )
throw( ::com::sun::star::uno::Exception,
- ::com::sun::star::uno::RuntimeException );
+ ::com::sun::star::uno::RuntimeException, std::exception );
// com.sun.star.document.XImporter interface ------------------------------
virtual void SAL_CALL setTargetDocument(
const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XComponent >& rxDocument )
throw( ::com::sun::star::lang::IllegalArgumentException,
- ::com::sun::star::uno::RuntimeException );
+ ::com::sun::star::uno::RuntimeException, std::exception );
// com.sun.star.document.XExporter interface ------------------------------
virtual void SAL_CALL setSourceDocument(
const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XComponent >& rxDocument )
throw( ::com::sun::star::lang::IllegalArgumentException,
- ::com::sun::star::uno::RuntimeException );
+ ::com::sun::star::uno::RuntimeException, std::exception );
// com.sun.star.document.XFilter interface --------------------------------
virtual sal_Bool SAL_CALL filter(
const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& rMediaDescSeq )
- throw( ::com::sun::star::uno::RuntimeException );
+ throw( ::com::sun::star::uno::RuntimeException, std::exception );
virtual void SAL_CALL cancel()
- throw( ::com::sun::star::uno::RuntimeException );
+ throw( ::com::sun::star::uno::RuntimeException, std::exception );
// ------------------------------------------------------------------------
protected: