summaryrefslogtreecommitdiff
path: root/unoxml/source/dom/notation.hxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2007-12-06 10:01:02 +0000
committerVladimir Glazounov <vg@openoffice.org>2007-12-06 10:01:02 +0000
commit0611edff102aa97c34af606a1790f84f9aed99ab (patch)
tree3ae6ee2a9b235bfbdc2c9caa71ea24bc5e960802 /unoxml/source/dom/notation.hxx
parent563cdc1404907b08ede4148ad0d9528675a447e6 (diff)
INTEGRATION: CWS os108 (1.5.40); FILE MERGED
2007/11/19 15:25:14 mst 1.5.40.1: - uno/xml/source/dom/*.{hc}xx: add RuntimeException to exception specifications of 172 methods of the DOM implementation where it was missing; fixes #i83675#
Diffstat (limited to 'unoxml/source/dom/notation.hxx')
-rw-r--r--unoxml/source/dom/notation.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/unoxml/source/dom/notation.hxx b/unoxml/source/dom/notation.hxx
index d9c4b2b2e30b..dd78d79dd091 100644
--- a/unoxml/source/dom/notation.hxx
+++ b/unoxml/source/dom/notation.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: notation.hxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: ihi $ $Date: 2007-11-19 16:44:57 $
+ * last change: $Author: vg $ $Date: 2007-12-06 11:01:02 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -75,7 +75,7 @@ namespace DOM
throw (RuntimeException);
// --- delegation for XNde base.
virtual Reference< XNode > SAL_CALL appendChild(const Reference< XNode >& newChild)
- throw (DOMException)
+ throw (RuntimeException, DOMException)
{
return CNode::appendChild(newChild);
}
@@ -156,7 +156,7 @@ namespace DOM
}
virtual Reference< XNode > SAL_CALL insertBefore(
const Reference< XNode >& newChild, const Reference< XNode >& refChild)
- throw (DOMException)
+ throw (RuntimeException, DOMException)
{
return CNode::insertBefore(newChild, refChild);
}
@@ -171,23 +171,23 @@ namespace DOM
CNode::normalize();
}
virtual Reference< XNode > SAL_CALL removeChild(const Reference< XNode >& oldChild)
- throw (DOMException)
+ throw (RuntimeException, DOMException)
{
return CNode::removeChild(oldChild);
}
virtual Reference< XNode > SAL_CALL replaceChild(
const Reference< XNode >& newChild, const Reference< XNode >& oldChild)
- throw (DOMException)
+ throw (RuntimeException, DOMException)
{
return CNode::replaceChild(newChild, oldChild);
}
virtual void SAL_CALL setNodeValue(const OUString& nodeValue)
- throw (DOMException)
+ throw (RuntimeException, DOMException)
{
return CNode::setNodeValue(nodeValue);
}
virtual void SAL_CALL setPrefix(const OUString& prefix)
- throw (DOMException)
+ throw (RuntimeException, DOMException)
{
return CNode::setPrefix(prefix);
}