diff options
Diffstat (limited to 'unoxml/source/dom/notationsmap.hxx')
-rw-r--r-- | unoxml/source/dom/notationsmap.hxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/unoxml/source/dom/notationsmap.hxx b/unoxml/source/dom/notationsmap.hxx index 0e7071e86af1..e3132639851e 100644 --- a/unoxml/source/dom/notationsmap.hxx +++ b/unoxml/source/dom/notationsmap.hxx @@ -49,53 +49,53 @@ namespace DOM /** The number of nodes in this map. */ - virtual sal_Int32 SAL_CALL getLength() throw (RuntimeException); + virtual sal_Int32 SAL_CALL getLength() throw (RuntimeException, std::exception); /** Retrieves a node specified by local name */ virtual Reference< XNode > SAL_CALL - getNamedItem(OUString const& name) throw (RuntimeException); + getNamedItem(OUString const& name) throw (RuntimeException, std::exception); /** Retrieves a node specified by local name and namespace URI. */ virtual Reference< XNode > SAL_CALL getNamedItemNS( OUString const& namespaceURI, OUString const& localName) - throw (RuntimeException); + throw (RuntimeException, std::exception); /** Returns the indexth item in the map. */ virtual Reference< XNode > SAL_CALL - item(sal_Int32 index) throw (RuntimeException); + item(sal_Int32 index) throw (RuntimeException, std::exception); /** Removes a node specified by name. */ virtual Reference< XNode > SAL_CALL - removeNamedItem(OUString const& name) throw (RuntimeException); + removeNamedItem(OUString const& name) throw (RuntimeException, std::exception); /** // Removes a node specified by local name and namespace URI. */ virtual Reference< XNode > SAL_CALL removeNamedItemNS( OUString const& namespaceURI, OUString const& localName) - throw (RuntimeException); + throw (RuntimeException, std::exception); /** // Adds a node using its nodeName attribute. */ virtual Reference< XNode > SAL_CALL setNamedItem(Reference< XNode > const& arg) - throw (RuntimeException); + throw (RuntimeException, std::exception); /** Adds a node using its namespaceURI and localName. */ virtual Reference< XNode > SAL_CALL setNamedItemNS(Reference< XNode > const& arg) - throw (RuntimeException); + throw (RuntimeException, std::exception); }; } |