summaryrefslogtreecommitdiffstats
path: root/unoxml/source/dom/saxbuilder.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'unoxml/source/dom/saxbuilder.hxx')
-rw-r--r--unoxml/source/dom/saxbuilder.hxx34
1 files changed, 17 insertions, 17 deletions
diff --git a/unoxml/source/dom/saxbuilder.hxx b/unoxml/source/dom/saxbuilder.hxx
index 69f320860f1d..c9ad2b9079e2 100644
--- a/unoxml/source/dom/saxbuilder.hxx
+++ b/unoxml/source/dom/saxbuilder.hxx
@@ -92,46 +92,46 @@ namespace DOM
// XServiceInfo
virtual OUString SAL_CALL getImplementationName()
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName)
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
virtual Sequence< OUString > SAL_CALL getSupportedServiceNames ()
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
// XDocumentHandler
virtual void SAL_CALL startDocument()
- throw( RuntimeException, com::sun::star::xml::sax::SAXException );
+ throw( RuntimeException, com::sun::star::xml::sax::SAXException, std::exception );
virtual void SAL_CALL endDocument()
- throw( RuntimeException, com::sun::star::xml::sax::SAXException );
+ throw( RuntimeException, com::sun::star::xml::sax::SAXException, std::exception );
virtual void SAL_CALL startElement( const OUString& aName,
const Reference< XAttributeList >& xAttribs )
- throw( RuntimeException, com::sun::star::xml::sax::SAXException );
+ throw( RuntimeException, com::sun::star::xml::sax::SAXException, std::exception );
virtual void SAL_CALL endElement( const OUString& aName )
- throw( RuntimeException, com::sun::star::xml::sax::SAXException );
+ throw( RuntimeException, com::sun::star::xml::sax::SAXException, std::exception );
virtual void SAL_CALL characters( const OUString& aChars )
- throw( RuntimeException, com::sun::star::xml::sax::SAXException );
+ throw( RuntimeException, com::sun::star::xml::sax::SAXException, std::exception );
virtual void SAL_CALL ignorableWhitespace( const OUString& aWhitespaces )
- throw( RuntimeException, com::sun::star::xml::sax::SAXException );
+ throw( RuntimeException, com::sun::star::xml::sax::SAXException, std::exception );
virtual void SAL_CALL processingInstruction( const OUString& aTarget,
const OUString& aData )
- throw( RuntimeException, com::sun::star::xml::sax::SAXException );
+ throw( RuntimeException, com::sun::star::xml::sax::SAXException, std::exception );
virtual void SAL_CALL setDocumentLocator( const Reference< XLocator >& xLocator )
- throw( RuntimeException, com::sun::star::xml::sax::SAXException );
+ throw( RuntimeException, com::sun::star::xml::sax::SAXException, std::exception );
// XSAXDocumentBuilder
virtual SAXDocumentBuilderState SAL_CALL getState()
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
virtual void SAL_CALL reset()
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
virtual Reference< XDocument > SAL_CALL getDocument()
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
virtual Reference< XDocumentFragment > SAL_CALL getDocumentFragment()
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
virtual void SAL_CALL startDocumentFragment(const Reference< XDocument >& ownerDoc)
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
virtual void SAL_CALL endDocumentFragment()
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
};