summaryrefslogtreecommitdiff
path: root/unoxml/source/dom/notation.hxx
diff options
context:
space:
mode:
authorLars Oppermann <lo@openoffice.org>2004-02-26 13:43:17 +0000
committerLars Oppermann <lo@openoffice.org>2004-02-26 13:43:17 +0000
commit14ff87d59b11833156b0992ee373b14d40ea368c (patch)
treeb3af06ba49719f5dc37dc7893532379e3f551782 /unoxml/source/dom/notation.hxx
parent4b26e619b71d56c4f1e91c61cb0bbcd138a77d05 (diff)
#i25594# exceptions
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 c85b58598c33..6dd579c68bee 100644
--- a/unoxml/source/dom/notation.hxx
+++ b/unoxml/source/dom/notation.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: notation.hxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: lo $ $Date: 2004-01-28 16:31:39 $
+ * last change: $Author: lo $ $Date: 2004-02-26 14:43:16 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -102,7 +102,7 @@ namespace DOM
throw (RuntimeException);
// --- delegation for XNde base.
virtual Reference< XNode > SAL_CALL appendChild(const Reference< XNode >& newChild)
- throw (RuntimeException)
+ throw (DOMException)
{
return CNode::appendChild(newChild);
}
@@ -183,7 +183,7 @@ namespace DOM
}
virtual Reference< XNode > SAL_CALL insertBefore(
const Reference< XNode >& newChild, const Reference< XNode >& refChild)
- throw (RuntimeException)
+ throw (DOMException)
{
return CNode::insertBefore(newChild, refChild);
}
@@ -198,23 +198,23 @@ namespace DOM
CNode::normalize();
}
virtual Reference< XNode > SAL_CALL removeChild(const Reference< XNode >& oldChild)
- throw (RuntimeException)
+ throw (DOMException)
{
return CNode::removeChild(oldChild);
}
virtual Reference< XNode > SAL_CALL replaceChild(
const Reference< XNode >& newChild, const Reference< XNode >& oldChild)
- throw (RuntimeException)
+ throw (DOMException)
{
return CNode::replaceChild(newChild, oldChild);
}
virtual void SAL_CALL setNodeValue(const OUString& nodeValue)
- throw (RuntimeException)
+ throw (DOMException)
{
return CNode::setNodeValue(nodeValue);
}
virtual void SAL_CALL setPrefix(const OUString& prefix)
- throw (RuntimeException)
+ throw (DOMException)
{
return CNode::setPrefix(prefix);
}