summaryrefslogtreecommitdiff
path: root/unoxml/source/xpath/xpathapi.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'unoxml/source/xpath/xpathapi.cxx')
-rw-r--r--unoxml/source/xpath/xpathapi.cxx13
1 files changed, 0 insertions, 13 deletions
diff --git a/unoxml/source/xpath/xpathapi.cxx b/unoxml/source/xpath/xpathapi.cxx
index 345623241a3f..faf243b6ff69 100644
--- a/unoxml/source/xpath/xpathapi.cxx
+++ b/unoxml/source/xpath/xpathapi.cxx
@@ -79,19 +79,16 @@ namespace XPath
}
Sequence< OUString > SAL_CALL CXPathAPI::getSupportedServiceNames()
- throw (RuntimeException, std::exception)
{
return CXPathAPI::_getSupportedServiceNames();
}
OUString SAL_CALL CXPathAPI::getImplementationName()
- throw (RuntimeException, std::exception)
{
return CXPathAPI::_getImplementationName();
}
sal_Bool SAL_CALL CXPathAPI::supportsService(const OUString& aServiceName)
- throw (RuntimeException, std::exception)
{
return cppu::supportsService(this, aServiceName);
}
@@ -99,7 +96,6 @@ namespace XPath
void SAL_CALL CXPathAPI::registerNS(
const OUString& aPrefix,
const OUString& aURI)
- throw (RuntimeException, std::exception)
{
::osl::MutexGuard const g(m_Mutex);
@@ -109,7 +105,6 @@ namespace XPath
void SAL_CALL CXPathAPI::unregisterNS(
const OUString& aPrefix,
const OUString& aURI)
- throw (RuntimeException, std::exception)
{
::osl::MutexGuard const g(m_Mutex);
@@ -213,7 +208,6 @@ namespace XPath
Reference< XNodeList > SAL_CALL CXPathAPI::selectNodeList(
const Reference< XNode >& contextNode,
const OUString& expr)
- throw (RuntimeException, XPathException, std::exception)
{
Reference< XXPathObject > xobj = eval(contextNode, expr);
return xobj->getNodeList();
@@ -226,7 +220,6 @@ namespace XPath
const Reference< XNode >& contextNode,
const OUString& expr,
const Reference< XNode >& namespaceNode)
- throw (RuntimeException, XPathException, std::exception)
{
lcl_collectRegisterNamespaces(*this, namespaceNode);
return selectNodeList(contextNode, expr);
@@ -238,7 +231,6 @@ namespace XPath
Reference< XNode > SAL_CALL CXPathAPI::selectSingleNode(
const Reference< XNode >& contextNode,
const OUString& expr)
- throw (RuntimeException, XPathException, std::exception)
{
Reference< XNodeList > aList = selectNodeList(contextNode, expr);
Reference< XNode > aNode = aList->item(0);
@@ -253,7 +245,6 @@ namespace XPath
const Reference< XNode >& contextNode,
const OUString& expr,
const Reference< XNode >& namespaceNode )
- throw (RuntimeException, XPathException, std::exception)
{
lcl_collectRegisterNamespaces(*this, namespaceNode);
return selectSingleNode(contextNode, expr);
@@ -316,7 +307,6 @@ namespace XPath
Reference< XXPathObject > SAL_CALL CXPathAPI::eval(
Reference< XNode > const& xContextNode,
const OUString& expr)
- throw (RuntimeException, XPathException, std::exception)
{
if (!xContextNode.is()) { throw RuntimeException(); }
@@ -392,7 +382,6 @@ namespace XPath
const Reference< XNode >& contextNode,
const OUString& expr,
const Reference< XNode >& namespaceNode)
- throw (RuntimeException, XPathException, std::exception)
{
lcl_collectRegisterNamespaces(*this, namespaceNode);
return eval(contextNode, expr);
@@ -405,7 +394,6 @@ namespace XPath
*/
void SAL_CALL CXPathAPI::registerExtension(
const OUString& aName)
- throw (RuntimeException, std::exception)
{
::osl::MutexGuard const g(m_Mutex);
@@ -421,7 +409,6 @@ namespace XPath
*/
void SAL_CALL CXPathAPI::registerExtensionInstance(
Reference< XXPathExtension> const& xExtension)
- throw (RuntimeException, std::exception)
{
if (!xExtension.is()) {
throw RuntimeException();