summaryrefslogtreecommitdiffstats
path: root/unoxml/source/dom/notation.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'unoxml/source/dom/notation.cxx')
-rw-r--r--unoxml/source/dom/notation.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/unoxml/source/dom/notation.cxx b/unoxml/source/dom/notation.cxx
index 29501f7b88f9..e59f8d85bbc8 100644
--- a/unoxml/source/dom/notation.cxx
+++ b/unoxml/source/dom/notation.cxx
@@ -31,7 +31,7 @@ namespace DOM
{
}
- OUString SAL_CALL CNotation::getPublicId() throw (RuntimeException)
+ OUString SAL_CALL CNotation::getPublicId() throw (RuntimeException, std::exception)
{
OSL_ENSURE(false,
"CNotation::getPublicId: not implemented (#i113683#)");
@@ -41,7 +41,7 @@ namespace DOM
/**
The system identifier of this notation.
*/
- OUString SAL_CALL CNotation::getSystemId() throw (RuntimeException)
+ OUString SAL_CALL CNotation::getSystemId() throw (RuntimeException, std::exception)
{
OSL_ENSURE(false,
"CNotation::getSystemId: not implemented (#i113683#)");
@@ -49,7 +49,7 @@ namespace DOM
}
- OUString SAL_CALL CNotation::getNodeName()throw (RuntimeException)
+ OUString SAL_CALL CNotation::getNodeName()throw (RuntimeException, std::exception)
{
::osl::MutexGuard const g(m_rMutex);
@@ -62,7 +62,7 @@ namespace DOM
return aName;
}
- OUString SAL_CALL CNotation::getNodeValue() throw (RuntimeException)
+ OUString SAL_CALL CNotation::getNodeValue() throw (RuntimeException, std::exception)
{
return OUString();
}