diff options
Diffstat (limited to 'unoxml/source/dom/entity.hxx')
-rw-r--r-- | unoxml/source/dom/entity.hxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/unoxml/source/dom/entity.hxx b/unoxml/source/dom/entity.hxx index a285c0ed6b75..7640d67eaf40 100644 --- a/unoxml/source/dom/entity.hxx +++ b/unoxml/source/dom/entity.hxx @@ -2,9 +2,9 @@ *
* $RCSfile: entity.hxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: lo $ $Date: 2004-01-28 16:31:30 $
+ * 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
@@ -111,7 +111,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);
}
@@ -192,7 +192,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);
}
@@ -207,23 +207,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);
}
|