summaryrefslogtreecommitdiff
path: root/unoxml/source/dom/entity.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'unoxml/source/dom/entity.cxx')
-rw-r--r--unoxml/source/dom/entity.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/unoxml/source/dom/entity.cxx b/unoxml/source/dom/entity.cxx
index 7ce7817319db..87d0f9c74efb 100644
--- a/unoxml/source/dom/entity.cxx
+++ b/unoxml/source/dom/entity.cxx
@@ -55,7 +55,7 @@ namespace DOM
/**
For unparsed entities, the name of the notation for the entity.
*/
- OUString SAL_CALL CEntity::getNotationName() throw (RuntimeException, std::exception)
+ OUString SAL_CALL CEntity::getNotationName()
{
OSL_ENSURE(false,
"CEntity::getNotationName: not implemented (#i113683#)");
@@ -65,7 +65,7 @@ namespace DOM
/**
The public identifier associated with the entity, if specified.
*/
- OUString SAL_CALL CEntity::getPublicId() throw (RuntimeException, std::exception)
+ OUString SAL_CALL CEntity::getPublicId()
{
::osl::MutexGuard const g(m_rMutex);
@@ -80,7 +80,7 @@ namespace DOM
/**
The system identifier associated with the entity, if specified.
*/
- OUString SAL_CALL CEntity::getSystemId() throw (RuntimeException, std::exception)
+ OUString SAL_CALL CEntity::getSystemId()
{
::osl::MutexGuard const g(m_rMutex);
@@ -91,7 +91,7 @@ namespace DOM
}
return aID;
}
- OUString SAL_CALL CEntity::getNodeName()throw (RuntimeException, std::exception)
+ OUString SAL_CALL CEntity::getNodeName()
{
::osl::MutexGuard const g(m_rMutex);
@@ -103,7 +103,7 @@ namespace DOM
}
return aName;
}
- OUString SAL_CALL CEntity::getNodeValue() throw (RuntimeException, std::exception)
+ OUString SAL_CALL CEntity::getNodeValue()
{
return OUString();
}