diff options
Diffstat (limited to 'xmlsecurity/source/helper/xsecparser.hxx')
-rw-r--r-- | xmlsecurity/source/helper/xsecparser.hxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/xmlsecurity/source/helper/xsecparser.hxx b/xmlsecurity/source/helper/xsecparser.hxx index f37df23a8a60..03eb1765c151 100644 --- a/xmlsecurity/source/helper/xsecparser.hxx +++ b/xmlsecurity/source/helper/xsecparser.hxx @@ -110,42 +110,42 @@ public: * XDocumentHandler */ virtual void SAL_CALL startDocument( ) - throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException); + throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException, std::exception); virtual void SAL_CALL endDocument( ) - throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException); + throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException, std::exception); virtual void SAL_CALL startElement( const OUString& aName, const com::sun::star::uno::Reference< com::sun::star::xml::sax::XAttributeList >& xAttribs ) - throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException); + throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException, std::exception); virtual void SAL_CALL endElement( const OUString& aName ) - throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException); + throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException, std::exception); virtual void SAL_CALL characters( const OUString& aChars ) - throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException); + throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException, std::exception); virtual void SAL_CALL ignorableWhitespace( const OUString& aWhitespaces ) - throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException); + throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException, std::exception); virtual void SAL_CALL processingInstruction( const OUString& aTarget, const OUString& aData ) - throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException); + throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException, std::exception); virtual void SAL_CALL setDocumentLocator( const com::sun::star::uno::Reference< com::sun::star::xml::sax::XLocator >& xLocator ) - throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException); + throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException, std::exception); /* * XInitialization */ virtual void SAL_CALL initialize( const com::sun::star::uno::Sequence< com::sun::star::uno::Any >& aArguments ) - throw(com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException); + throw(com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception); }; #endif |