summaryrefslogtreecommitdiff
path: root/unoxml/source/dom/processinginstruction.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'unoxml/source/dom/processinginstruction.cxx')
-rw-r--r--unoxml/source/dom/processinginstruction.cxx9
1 files changed, 3 insertions, 6 deletions
diff --git a/unoxml/source/dom/processinginstruction.cxx b/unoxml/source/dom/processinginstruction.cxx
index 1cda0809808f..70f492ae4e4d 100644
--- a/unoxml/source/dom/processinginstruction.cxx
+++ b/unoxml/source/dom/processinginstruction.cxx
@@ -50,7 +50,7 @@ namespace DOM
The content of this processing instruction.
*/
OUString SAL_CALL
- CProcessingInstruction::getData() throw (RuntimeException, std::exception)
+ CProcessingInstruction::getData()
{
::osl::MutexGuard const g(m_rMutex);
@@ -71,7 +71,7 @@ namespace DOM
The target of this processing instruction.
*/
OUString SAL_CALL
- CProcessingInstruction::getTarget() throw (RuntimeException, std::exception)
+ CProcessingInstruction::getTarget()
{
::osl::MutexGuard const g(m_rMutex);
@@ -92,7 +92,6 @@ namespace DOM
The content of this processing instruction.
*/
void SAL_CALL CProcessingInstruction::setData(OUString const& rData)
- throw (RuntimeException, DOMException, std::exception)
{
::osl::MutexGuard const g(m_rMutex);
@@ -109,7 +108,7 @@ namespace DOM
}
OUString SAL_CALL
- CProcessingInstruction::getNodeName() throw (RuntimeException, std::exception)
+ CProcessingInstruction::getNodeName()
{
::osl::MutexGuard const g(m_rMutex);
@@ -124,14 +123,12 @@ namespace DOM
}
OUString SAL_CALL CProcessingInstruction::getNodeValue()
- throw (RuntimeException, std::exception)
{
return getData();
}
void SAL_CALL
CProcessingInstruction::setNodeValue(OUString const& rNodeValue)
- throw (RuntimeException, DOMException, std::exception)
{
return setData(rNodeValue);
}