summaryrefslogtreecommitdiffstats
path: root/unoxml/source/dom/node.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'unoxml/source/dom/node.hxx')
-rw-r--r--unoxml/source/dom/node.hxx58
1 files changed, 29 insertions, 29 deletions
diff --git a/unoxml/source/dom/node.hxx b/unoxml/source/dom/node.hxx
index d3d2696fba74..ab97112bb5a0 100644
--- a/unoxml/source/dom/node.hxx
+++ b/unoxml/source/dom/node.hxx
@@ -153,127 +153,127 @@ namespace DOM
*/
virtual Reference< XNode > SAL_CALL
appendChild(Reference< XNode > const& xNewChild)
- throw (RuntimeException, DOMException);
+ throw (RuntimeException, DOMException, std::exception);
/**
Returns a duplicate of this node, i.e., serves as a generic copy
constructor for nodes.
*/
virtual Reference< XNode > SAL_CALL cloneNode(sal_Bool deep)
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
/**
A NamedNodeMap containing the attributes of this node
(if it is an Element) or null otherwise.
*/
virtual Reference< XNamedNodeMap > SAL_CALL getAttributes()
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
/**
A NodeList that contains all children of this node.
*/
virtual Reference< XNodeList > SAL_CALL getChildNodes()
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
/**
The first child of this node.
*/
virtual Reference< XNode > SAL_CALL getFirstChild()
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
/**
The last child of this node.
*/
virtual Reference< XNode > SAL_CALL getLastChild()
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
/**
Returns the local part of the qualified name of this node.
*/
virtual OUString SAL_CALL getLocalName()
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
/**
The namespace URI of this node, or null if it is unspecified.
*/
virtual OUString SAL_CALL getNamespaceURI()
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
/**
The node immediately following this node.
*/
virtual Reference< XNode > SAL_CALL getNextSibling()
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
/**
The name of this node, depending on its type; see the table above.
-- virtual implemented by actual node types
*/
virtual OUString SAL_CALL getNodeName()
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
/**
A code representing the type of the underlying object, as defined above.
*/
virtual NodeType SAL_CALL getNodeType()
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
/**
The value of this node, depending on its type; see the table above.
-- virtual implemented by actual node types
*/
virtual OUString SAL_CALL getNodeValue()
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
/**
The Document object associated with this node.
*/
virtual Reference< XDocument > SAL_CALL getOwnerDocument()
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
/**
The parent of this node.
*/
virtual Reference< XNode > SAL_CALL getParentNode()
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
/**
The namespace prefix of this node, or null if it is unspecified.
*/
virtual OUString SAL_CALL getPrefix()
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
/**
The node immediately preceding this node.
*/
virtual Reference< XNode > SAL_CALL getPreviousSibling()
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
/**
Returns whether this node (if it is an element) has any attributes.
*/
virtual sal_Bool SAL_CALL hasAttributes()
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
/**
Returns whether this node has any children.
*/
virtual sal_Bool SAL_CALL hasChildNodes()
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
/**
Inserts the node newChild before the existing child node refChild.
*/
virtual Reference< XNode > SAL_CALL insertBefore(
const Reference< XNode >& newChild, const Reference< XNode >& refChild)
- throw (RuntimeException, DOMException);
+ throw (RuntimeException, DOMException, std::exception);
/**
Tests whether the DOM implementation implements a specific feature and
that feature is supported by this node.
*/
virtual sal_Bool SAL_CALL isSupported(const OUString& feature, const OUString& ver)
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
/**
Puts all Text nodes in the full depth of the sub-tree underneath this
@@ -283,14 +283,14 @@ namespace DOM
Text nodes nor empty Text nodes.
*/
virtual void SAL_CALL normalize()
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
/**
Removes the child node indicated by oldChild from the list of children,
and returns it.
*/
virtual Reference< XNode > SAL_CALL removeChild(const Reference< XNode >& oldChild)
- throw (RuntimeException, DOMException);
+ throw (RuntimeException, DOMException, std::exception);
/**
Replaces the child node oldChild with newChild in the list of children,
@@ -298,39 +298,39 @@ namespace DOM
*/
virtual Reference< XNode > SAL_CALL replaceChild(
const Reference< XNode >& newChild, const Reference< XNode >& oldChild)
- throw (RuntimeException, DOMException);
+ throw (RuntimeException, DOMException, std::exception);
/**
The value of this node, depending on its type; see the table above.
*/
virtual void SAL_CALL setNodeValue(const OUString& nodeValue)
- throw (RuntimeException, DOMException);
+ throw (RuntimeException, DOMException, std::exception);
/**
The namespace prefix of this node, or null if it is unspecified.
*/
virtual void SAL_CALL setPrefix(const OUString& prefix)
- throw (RuntimeException, DOMException);
+ throw (RuntimeException, DOMException, std::exception);
// --- XEventTarget
virtual void SAL_CALL addEventListener(const OUString& eventType,
const Reference< XEventListener >& listener,
sal_Bool useCapture)
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
virtual void SAL_CALL removeEventListener(const OUString& eventType,
const Reference< XEventListener >& listener,
sal_Bool useCapture)
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
virtual sal_Bool SAL_CALL dispatchEvent(const Reference< XEvent >& evt)
- throw(RuntimeException, EventException);
+ throw(RuntimeException, EventException, std::exception);
// --- XUnoTunnel
virtual ::sal_Int64 SAL_CALL
getSomething(Sequence< ::sal_Int8 > const& rId)
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
};
/// eliminate redundant namespace declarations