summaryrefslogtreecommitdiff
path: root/include/comphelper/ihwrapnofilter.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/comphelper/ihwrapnofilter.hxx')
-rw-r--r--include/comphelper/ihwrapnofilter.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/comphelper/ihwrapnofilter.hxx b/include/comphelper/ihwrapnofilter.hxx
index 28b3ffc5db31..24486e156a06 100644
--- a/include/comphelper/ihwrapnofilter.hxx
+++ b/include/comphelper/ihwrapnofilter.hxx
@@ -51,14 +51,14 @@ namespace comphelper {
//____________________________________________________________________________________________________
virtual void SAL_CALL handle( const com::sun::star::uno::Reference< com::sun::star::task::XInteractionRequest >& xRequest)
- throw( com::sun::star::uno::RuntimeException );
+ throw( com::sun::star::uno::RuntimeException, std::exception );
//____________________________________________________________________________________________________
// XInteractionHandler2
//____________________________________________________________________________________________________
virtual sal_Bool SAL_CALL handleInteractionRequest( const com::sun::star::uno::Reference< com::sun::star::task::XInteractionRequest >& xRequest)
- throw( com::sun::star::uno::RuntimeException );
+ throw( com::sun::star::uno::RuntimeException, std::exception );
//____________________________________________________________________________________________________
// XInitialization
@@ -74,13 +74,13 @@ namespace comphelper {
//____________________________________________________________________________________________________
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& 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 );
+ throw ( ::com::sun::star::uno::RuntimeException, std::exception );
};
}