summaryrefslogtreecommitdiff
path: root/unoxml/source/dom/domimplementation.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'unoxml/source/dom/domimplementation.hxx')
-rw-r--r--unoxml/source/dom/domimplementation.hxx9
1 files changed, 3 insertions, 6 deletions
diff --git a/unoxml/source/dom/domimplementation.hxx b/unoxml/source/dom/domimplementation.hxx
index de218640f1f1..095587409235 100644
--- a/unoxml/source/dom/domimplementation.hxx
+++ b/unoxml/source/dom/domimplementation.hxx
@@ -45,20 +45,17 @@ namespace DOM
/**
Creates a DOM Document object of the specified type with its document element.
*/
- virtual css::uno::Reference< css::xml::dom::XDocument > SAL_CALL createDocument(const OUString& namespaceURI, const OUString& qualifiedName, const css::uno::Reference< css::xml::dom::XDocumentType >& doctype)
- throw (css::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Reference< css::xml::dom::XDocument > SAL_CALL createDocument(const OUString& namespaceURI, const OUString& qualifiedName, const css::uno::Reference< css::xml::dom::XDocumentType >& doctype) override;
/**
Creates an empty DocumentType node.
*/
- virtual css::uno::Reference< css::xml::dom::XDocumentType > SAL_CALL createDocumentType(const OUString& qualifiedName, const OUString& publicId, const OUString& systemId)
- throw (css::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Reference< css::xml::dom::XDocumentType > SAL_CALL createDocumentType(const OUString& qualifiedName, const OUString& publicId, const OUString& systemId) override;
/**
Test if the DOM implementation implements a specific feature.
*/
- virtual sal_Bool SAL_CALL hasFeature(const OUString& feature, const OUString& ver)
- throw (css::uno::RuntimeException, std::exception) override;
+ virtual sal_Bool SAL_CALL hasFeature(const OUString& feature, const OUString& ver) override;
};
}
#endif