summaryrefslogtreecommitdiff
path: root/xmlscript/source/xmllib_imexp/imp_share.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmlscript/source/xmllib_imexp/imp_share.hxx')
-rw-r--r--xmlscript/source/xmllib_imexp/imp_share.hxx36
1 files changed, 18 insertions, 18 deletions
diff --git a/xmlscript/source/xmllib_imexp/imp_share.hxx b/xmlscript/source/xmllib_imexp/imp_share.hxx
index 0a26825d87f4..fc41ae734c5d 100644
--- a/xmlscript/source/xmllib_imexp/imp_share.hxx
+++ b/xmlscript/source/xmllib_imexp/imp_share.hxx
@@ -131,19 +131,19 @@ public:
// XRoot
virtual void SAL_CALL startDocument(
Reference< xml::input::XNamespaceMapping > const & xNamespaceMapping )
- throw (xml::sax::SAXException, RuntimeException);
+ throw (xml::sax::SAXException, RuntimeException, std::exception);
virtual void SAL_CALL endDocument()
- throw (xml::sax::SAXException, RuntimeException);
+ throw (xml::sax::SAXException, RuntimeException, std::exception);
virtual void SAL_CALL processingInstruction(
OUString const & rTarget, OUString const & rData )
- throw (xml::sax::SAXException, RuntimeException);
+ throw (xml::sax::SAXException, RuntimeException, std::exception);
virtual void SAL_CALL setDocumentLocator(
Reference< xml::sax::XLocator > const & xLocator )
- throw (xml::sax::SAXException, RuntimeException);
+ throw (xml::sax::SAXException, RuntimeException, std::exception);
virtual Reference< xml::input::XElement > SAL_CALL startRootElement(
sal_Int32 nUid, OUString const & rLocalName,
Reference< xml::input::XAttributes > const & xAttributes )
- throw (xml::sax::SAXException, RuntimeException);
+ throw (xml::sax::SAXException, RuntimeException, std::exception);
};
class LibElementBase
@@ -167,27 +167,27 @@ public:
// XElement
virtual Reference< xml::input::XElement > SAL_CALL getParent()
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
virtual OUString SAL_CALL getLocalName()
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
virtual sal_Int32 SAL_CALL getUid()
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
virtual Reference< xml::input::XAttributes > SAL_CALL getAttributes()
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
virtual void SAL_CALL ignorableWhitespace(
OUString const & rWhitespaces )
- throw (xml::sax::SAXException, RuntimeException);
+ throw (xml::sax::SAXException, RuntimeException, std::exception);
virtual void SAL_CALL characters( OUString const & rChars )
- throw (xml::sax::SAXException, RuntimeException);
+ throw (xml::sax::SAXException, RuntimeException, std::exception);
virtual void SAL_CALL processingInstruction(
OUString const & rTarget, OUString const & rData )
- throw (xml::sax::SAXException, RuntimeException);
+ throw (xml::sax::SAXException, RuntimeException, std::exception);
virtual void SAL_CALL endElement()
- throw (xml::sax::SAXException, RuntimeException);
+ throw (xml::sax::SAXException, RuntimeException, std::exception);
virtual Reference< xml::input::XElement > SAL_CALL startChildElement(
sal_Int32 nUid, OUString const & rLocalName,
Reference< xml::input::XAttributes > const & xAttributes )
- throw (xml::sax::SAXException, RuntimeException);
+ throw (xml::sax::SAXException, RuntimeException, std::exception);
};
class LibrariesElement : public LibElementBase
@@ -201,9 +201,9 @@ public:
virtual Reference< xml::input::XElement > SAL_CALL startChildElement(
sal_Int32 nUid, OUString const & rLocalName,
Reference< xml::input::XAttributes > const & xAttributes )
- throw (xml::sax::SAXException, RuntimeException);
+ throw (xml::sax::SAXException, RuntimeException, std::exception);
virtual void SAL_CALL endElement()
- throw (xml::sax::SAXException, RuntimeException);
+ throw (xml::sax::SAXException, RuntimeException, std::exception);
LibrariesElement(
OUString const & rLocalName,
@@ -224,9 +224,9 @@ public:
virtual Reference< xml::input::XElement > SAL_CALL startChildElement(
sal_Int32 nUid, OUString const & rLocalName,
Reference< xml::input::XAttributes > const & xAttributes )
- throw (xml::sax::SAXException, RuntimeException);
+ throw (xml::sax::SAXException, RuntimeException, std::exception);
virtual void SAL_CALL endElement()
- throw (xml::sax::SAXException, RuntimeException);
+ throw (xml::sax::SAXException, RuntimeException, std::exception);
LibraryElement(
OUString const & rLocalName,