summaryrefslogtreecommitdiff
path: root/unoxml/source/dom/saxbuilder.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'unoxml/source/dom/saxbuilder.cxx')
-rw-r--r--unoxml/source/dom/saxbuilder.cxx19
1 files changed, 2 insertions, 17 deletions
diff --git a/unoxml/source/dom/saxbuilder.cxx b/unoxml/source/dom/saxbuilder.cxx
index 786f3700b9f0..4bbd27176046 100644
--- a/unoxml/source/dom/saxbuilder.cxx
+++ b/unoxml/source/dom/saxbuilder.cxx
@@ -64,25 +64,21 @@ namespace DOM
}
Sequence< OUString > SAL_CALL CSAXDocumentBuilder::getSupportedServiceNames()
- throw (RuntimeException, std::exception)
{
return CSAXDocumentBuilder::_getSupportedServiceNames();
}
OUString SAL_CALL CSAXDocumentBuilder::getImplementationName()
- throw (RuntimeException, std::exception)
{
return CSAXDocumentBuilder::_getImplementationName();
}
sal_Bool SAL_CALL CSAXDocumentBuilder::supportsService(const OUString& aServiceName)
- throw (RuntimeException, std::exception)
{
return cppu::supportsService(this, aServiceName);
}
SAXDocumentBuilderState SAL_CALL CSAXDocumentBuilder::getState()
- throw (RuntimeException, std::exception)
{
::osl::MutexGuard g(m_Mutex);
@@ -90,7 +86,6 @@ namespace DOM
}
void SAL_CALL CSAXDocumentBuilder::reset()
- throw (RuntimeException, std::exception)
{
::osl::MutexGuard g(m_Mutex);
@@ -102,7 +97,6 @@ namespace DOM
}
Reference< XDocument > SAL_CALL CSAXDocumentBuilder::getDocument()
- throw (RuntimeException, std::exception)
{
::osl::MutexGuard g(m_Mutex);
@@ -113,7 +107,6 @@ namespace DOM
}
Reference< XDocumentFragment > SAL_CALL CSAXDocumentBuilder::getDocumentFragment()
- throw (RuntimeException, std::exception)
{
::osl::MutexGuard g(m_Mutex);
@@ -123,7 +116,6 @@ namespace DOM
}
void SAL_CALL CSAXDocumentBuilder::startDocumentFragment(const Reference< XDocument >& ownerDoc)
- throw (RuntimeException, std::exception)
{
::osl::MutexGuard g(m_Mutex);
@@ -140,7 +132,6 @@ namespace DOM
}
void SAL_CALL CSAXDocumentBuilder::endDocumentFragment()
- throw (RuntimeException, std::exception)
{
::osl::MutexGuard g(m_Mutex);
@@ -157,7 +148,7 @@ namespace DOM
// document handler
- void SAL_CALL CSAXDocumentBuilder::startDocument() throw (RuntimeException, SAXException, std::exception)
+ void SAL_CALL CSAXDocumentBuilder::startDocument()
{
::osl::MutexGuard g(m_Mutex);
@@ -173,7 +164,7 @@ namespace DOM
m_aState = SAXDocumentBuilderState_BUILDING_DOCUMENT;
}
- void SAL_CALL CSAXDocumentBuilder::endDocument() throw (RuntimeException, SAXException, std::exception)
+ void SAL_CALL CSAXDocumentBuilder::endDocument()
{
::osl::MutexGuard g(m_Mutex);
@@ -189,7 +180,6 @@ namespace DOM
}
void SAL_CALL CSAXDocumentBuilder::startElement(const OUString& aName, const Reference< XAttributeList>& attribs)
- throw (RuntimeException, SAXException, std::exception)
{
::osl::MutexGuard g(m_Mutex);
@@ -290,7 +280,6 @@ namespace DOM
}
void SAL_CALL CSAXDocumentBuilder::endElement(const OUString& aName)
- throw (RuntimeException, SAXException, std::exception)
{
::osl::MutexGuard g(m_Mutex);
@@ -319,7 +308,6 @@ namespace DOM
}
void SAL_CALL CSAXDocumentBuilder::characters(const OUString& aChars)
- throw (RuntimeException, SAXException, std::exception)
{
::osl::MutexGuard g(m_Mutex);
@@ -333,7 +321,6 @@ namespace DOM
}
void SAL_CALL CSAXDocumentBuilder::ignorableWhitespace(const OUString& )
- throw (RuntimeException, SAXException, std::exception)
{
::osl::MutexGuard g(m_Mutex);
@@ -344,7 +331,6 @@ namespace DOM
}
void SAL_CALL CSAXDocumentBuilder::processingInstruction(const OUString& aTarget, const OUString& aData)
- throw (RuntimeException, SAXException, std::exception)
{
::osl::MutexGuard g(m_Mutex);
@@ -359,7 +345,6 @@ namespace DOM
}
void SAL_CALL CSAXDocumentBuilder::setDocumentLocator(const Reference< XLocator >& aLocator)
- throw (RuntimeException, SAXException, std::exception)
{
::osl::MutexGuard g(m_Mutex);