summaryrefslogtreecommitdiff
path: root/unoxml/source/dom/attr.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'unoxml/source/dom/attr.cxx')
-rw-r--r--unoxml/source/dom/attr.cxx12
1 files changed, 1 insertions, 11 deletions
diff --git a/unoxml/source/dom/attr.cxx b/unoxml/source/dom/attr.cxx
index ed2a87ccbdd6..9f0f7c8c5b67 100644
--- a/unoxml/source/dom/attr.cxx
+++ b/unoxml/source/dom/attr.cxx
@@ -81,17 +81,14 @@ namespace DOM
}
OUString SAL_CALL CAttr::getNodeName()
- throw (RuntimeException, std::exception)
{
return getName();
}
OUString SAL_CALL CAttr::getNodeValue()
- throw (RuntimeException, std::exception)
{
return getValue();
}
OUString SAL_CALL CAttr::getLocalName()
- throw (RuntimeException, std::exception)
{
return getName();
}
@@ -100,7 +97,7 @@ namespace DOM
/**
Returns the name of this attribute.
*/
- OUString SAL_CALL CAttr::getName() throw (RuntimeException, std::exception)
+ OUString SAL_CALL CAttr::getName()
{
::osl::MutexGuard const g(m_rMutex);
@@ -117,7 +114,6 @@ namespace DOM
attribute is not in use.
*/
Reference< XElement > SAL_CALL CAttr::getOwnerElement()
- throw (RuntimeException, std::exception)
{
::osl::MutexGuard const g(m_rMutex);
@@ -139,7 +135,6 @@ namespace DOM
document, this is true; otherwise, it is false.
*/
sal_Bool SAL_CALL CAttr::getSpecified()
- throw (RuntimeException, std::exception)
{
// FIXME if this DOM implementation supported DTDs it would need
// to check that this attribute is not default or something
@@ -150,7 +145,6 @@ namespace DOM
On retrieval, the value of the attribute is returned as a string.
*/
OUString SAL_CALL CAttr::getValue()
- throw (RuntimeException, std::exception)
{
::osl::MutexGuard const g(m_rMutex);
@@ -171,7 +165,6 @@ namespace DOM
Sets the value of the attribute from a string.
*/
void SAL_CALL CAttr::setValue(const OUString& value)
- throw (RuntimeException, DOMException, std::exception)
{
::osl::ClearableMutexGuard guard(m_rMutex);
@@ -218,7 +211,6 @@ namespace DOM
}
void SAL_CALL CAttr::setPrefix(const OUString& prefix)
- throw (RuntimeException, DOMException, std::exception)
{
::osl::MutexGuard const g(m_rMutex);
@@ -234,7 +226,6 @@ namespace DOM
}
OUString SAL_CALL CAttr::getPrefix()
- throw (RuntimeException, std::exception)
{
::osl::MutexGuard const g(m_rMutex);
@@ -251,7 +242,6 @@ namespace DOM
}
OUString SAL_CALL CAttr::getNamespaceURI()
- throw (RuntimeException, std::exception)
{
::osl::MutexGuard const g(m_rMutex);