summaryrefslogtreecommitdiff
path: root/xmlsecurity/source/framework/xmlencryptiontemplateimpl.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmlsecurity/source/framework/xmlencryptiontemplateimpl.hxx')
-rw-r--r--xmlsecurity/source/framework/xmlencryptiontemplateimpl.hxx25
1 files changed, 11 insertions, 14 deletions
diff --git a/xmlsecurity/source/framework/xmlencryptiontemplateimpl.hxx b/xmlsecurity/source/framework/xmlencryptiontemplateimpl.hxx
index e5bec6a3e098..adc92a868d48 100644
--- a/xmlsecurity/source/framework/xmlencryptiontemplateimpl.hxx
+++ b/xmlsecurity/source/framework/xmlencryptiontemplateimpl.hxx
@@ -50,44 +50,41 @@ class XMLEncryptionTemplateImpl : public ::cppu::WeakImplHelper<
//Methods from XXMLEncryptionTemplate
virtual void SAL_CALL setTemplate(
const css::uno::Reference< css::xml::wrapper::XXMLElementWrapper >& aXmlElement
- )
- throw (css::uno::RuntimeException, css::lang::IllegalArgumentException, std::exception) override;
+ ) override;
virtual css::uno::Reference< css::xml::wrapper::XXMLElementWrapper > SAL_CALL getTemplate(
- ) throw (css::uno::RuntimeException, std::exception) override;
+ ) override;
virtual void SAL_CALL setTarget(
const css::uno::Reference< css::xml::wrapper::XXMLElementWrapper >& aXmlElement
- ) throw( css::lang::IllegalArgumentException, std::exception) override;
+ ) override;
virtual css::uno::Reference< css::xml::wrapper::XXMLElementWrapper > SAL_CALL getTarget(
- ) throw (css::uno::RuntimeException, std::exception) override ;
+ ) override ;
virtual void SAL_CALL setStatus(
- css::xml::crypto::SecurityOperationStatus status )
- throw (css::lang::IllegalArgumentException, css::uno::RuntimeException, std::exception) override;
+ css::xml::crypto::SecurityOperationStatus status ) override;
virtual css::xml::crypto::SecurityOperationStatus
- SAL_CALL getStatus( )
- throw (css::uno::RuntimeException, std::exception) override;
+ SAL_CALL getStatus( ) override;
//Methods from XServiceInfo
- virtual OUString SAL_CALL getImplementationName() throw( css::uno::RuntimeException, std::exception ) override ;
+ virtual OUString SAL_CALL getImplementationName() override ;
virtual sal_Bool SAL_CALL supportsService(
const OUString& ServiceName
- ) throw( css::uno::RuntimeException, std::exception ) override ;
+ ) override ;
- virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw( css::uno::RuntimeException, std::exception ) override ;
+ virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override ;
//Helper for XServiceInfo
static css::uno::Sequence< OUString > impl_getSupportedServiceNames() ;
/// @throws css::uno::RuntimeException
- static OUString impl_getImplementationName() throw( css::uno::RuntimeException ) ;
+ static OUString impl_getImplementationName() ;
//Helper for registry
/// @throws css::uno::RuntimeException
- static css::uno::Reference< css::uno::XInterface > SAL_CALL impl_createInstance( const css::uno::Reference< css::lang::XMultiServiceFactory >& aServiceManager ) throw( css::uno::RuntimeException ) ;
+ static css::uno::Reference< css::uno::XInterface > SAL_CALL impl_createInstance( const css::uno::Reference< css::lang::XMultiServiceFactory >& aServiceManager ) ;
static css::uno::Reference< css::lang::XSingleServiceFactory > impl_createFactory( const css::uno::Reference< css::lang::XMultiServiceFactory >& aServiceManager ) ;
} ;