summaryrefslogtreecommitdiff
path: root/unoxml/source/xpath/xpathobject.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'unoxml/source/xpath/xpathobject.hxx')
-rw-r--r--unoxml/source/xpath/xpathobject.hxx21
1 files changed, 10 insertions, 11 deletions
diff --git a/unoxml/source/xpath/xpathobject.hxx b/unoxml/source/xpath/xpathobject.hxx
index 7d06dbb08597..41787c3bb705 100644
--- a/unoxml/source/xpath/xpathobject.hxx
+++ b/unoxml/source/xpath/xpathobject.hxx
@@ -56,53 +56,52 @@ namespace XPath
/**
get object type
*/
- virtual css::xml::xpath::XPathObjectType SAL_CALL getObjectType() throw (css::uno::RuntimeException, std::exception) override;
+ virtual css::xml::xpath::XPathObjectType SAL_CALL getObjectType() override;
/**
get the nodes from a nodelist type object
*/
- virtual css::uno::Reference< css::xml::dom::XNodeList > SAL_CALL getNodeList()
- throw (css::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Reference< css::xml::dom::XNodeList > SAL_CALL getNodeList() override;
/**
get value of a boolean object
*/
- virtual sal_Bool SAL_CALL getBoolean() throw (css::uno::RuntimeException, std::exception) override;
+ virtual sal_Bool SAL_CALL getBoolean() override;
/**
get number as byte
*/
- virtual sal_Int8 SAL_CALL getByte() throw (css::uno::RuntimeException, std::exception) override;
+ virtual sal_Int8 SAL_CALL getByte() override;
/**
get number as short
*/
- virtual sal_Int16 SAL_CALL getShort() throw (css::uno::RuntimeException, std::exception) override;
+ virtual sal_Int16 SAL_CALL getShort() override;
/**
get number as long
*/
- virtual sal_Int32 SAL_CALL getLong() throw (css::uno::RuntimeException, std::exception) override;
+ virtual sal_Int32 SAL_CALL getLong() override;
/**
get number as hyper
*/
- virtual sal_Int64 SAL_CALL getHyper() throw (css::uno::RuntimeException, std::exception) override;
+ virtual sal_Int64 SAL_CALL getHyper() override;
/**
get number as float
*/
- virtual float SAL_CALL getFloat() throw (css::uno::RuntimeException, std::exception) override;
+ virtual float SAL_CALL getFloat() override;
/**
get number as double
*/
- virtual double SAL_CALL getDouble() throw (css::uno::RuntimeException, std::exception) override;
+ virtual double SAL_CALL getDouble() override;
/**
get string value
*/
- virtual OUString SAL_CALL getString() throw (css::uno::RuntimeException, std::exception) override;
+ virtual OUString SAL_CALL getString() override;
};
}