summaryrefslogtreecommitdiffstats
path: root/unoxml/source/dom/entitiesmap.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'unoxml/source/dom/entitiesmap.hxx')
-rw-r--r--unoxml/source/dom/entitiesmap.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/unoxml/source/dom/entitiesmap.hxx b/unoxml/source/dom/entitiesmap.hxx
index aa9c47c7ec9b..76e641479218 100644
--- a/unoxml/source/dom/entitiesmap.hxx
+++ b/unoxml/source/dom/entitiesmap.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(const OUString& name) throw (RuntimeException);
+ getNamedItem(const OUString& 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);
};
}