summaryrefslogtreecommitdiff
path: root/unoxml/source/dom/documentbuilder.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'unoxml/source/dom/documentbuilder.hxx')
-rw-r--r--unoxml/source/dom/documentbuilder.hxx36
1 files changed, 12 insertions, 24 deletions
diff --git a/unoxml/source/dom/documentbuilder.hxx b/unoxml/source/dom/documentbuilder.hxx
index 482c5ea718dc..cdda893010d5 100644
--- a/unoxml/source/dom/documentbuilder.hxx
+++ b/unoxml/source/dom/documentbuilder.hxx
@@ -69,72 +69,60 @@ namespace DOM
rSMgr);
// XServiceInfo
- virtual OUString SAL_CALL getImplementationName()
- throw (css::uno::RuntimeException, std::exception) override;
- virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName)
- throw (css::uno::RuntimeException, std::exception) override;
- virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames ()
- throw (css::uno::RuntimeException, std::exception) override;
+ virtual OUString SAL_CALL getImplementationName() override;
+ virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName) override;
+ virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames () override;
/**
Obtain an instance of a DOMImplementation object.
*/
- virtual css::uno::Reference< css::xml::dom::XDOMImplementation > SAL_CALL getDOMImplementation()
- throw (css::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Reference< css::xml::dom::XDOMImplementation > SAL_CALL getDOMImplementation() override;
/**
Indicates whether or not this parser is configured to understand
namespaces.
*/
- virtual sal_Bool SAL_CALL isNamespaceAware()
- throw (css::uno::RuntimeException, std::exception) override;
+ virtual sal_Bool SAL_CALL isNamespaceAware() override;
/**
Indicates whether or not this parser is configured to validate XML
documents.
*/
- virtual sal_Bool SAL_CALL isValidating()
- throw (css::uno::RuntimeException, std::exception) override;
+ virtual sal_Bool SAL_CALL isValidating() override;
/**
Obtain a new instance of a DOM Document object to build a DOM tree
with.
*/
- virtual css::uno::Reference< css::xml::dom::XDocument > SAL_CALL newDocument()
- throw (css::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Reference< css::xml::dom::XDocument > SAL_CALL newDocument() override;
/**
Parse the content of the given InputStream as an XML document and
return a new DOM Document object.
*/
- virtual css::uno::Reference< css::xml::dom::XDocument > SAL_CALL parse(const css::uno::Reference< css::io::XInputStream >& is)
- throw (css::uno::RuntimeException, css::xml::sax::SAXParseException, css::io::IOException, std::exception) override;
+ virtual css::uno::Reference< css::xml::dom::XDocument > SAL_CALL parse(const css::uno::Reference< css::io::XInputStream >& is) override;
/**
Parse the content of the given URI as an XML document and return
a new DOM Document object.
*/
- virtual css::uno::Reference< css::xml::dom::XDocument > SAL_CALL parseURI(const OUString& uri)
- throw (css::uno::RuntimeException, css::xml::sax::SAXParseException, css::io::IOException, std::exception) override;
+ virtual css::uno::Reference< css::xml::dom::XDocument > SAL_CALL parseURI(const OUString& uri) override;
/**
Specify the EntityResolver to be used to resolve entities present
in the XML document to be parsed.
*/
- virtual void SAL_CALL setEntityResolver(const css::uno::Reference< css::xml::sax::XEntityResolver >& er)
- throw (css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL setEntityResolver(const css::uno::Reference< css::xml::sax::XEntityResolver >& er) override;
/// @throws css::uno::RuntimeException
- css::uno::Reference< css::xml::sax::XEntityResolver > SAL_CALL getEntityResolver()
- throw (css::uno::RuntimeException);
+ css::uno::Reference< css::xml::sax::XEntityResolver > SAL_CALL getEntityResolver();
/**
Specify the ErrorHandler to be used to report errors present in
the XML document to be parsed.
*/
- virtual void SAL_CALL setErrorHandler(const css::uno::Reference< css::xml::sax::XErrorHandler >& eh)
- throw (css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL setErrorHandler(const css::uno::Reference< css::xml::sax::XErrorHandler >& eh) override;
};
}