summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--forms/source/component/File.cxx2
-rw-r--r--forms/source/component/File.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/forms/source/component/File.cxx b/forms/source/component/File.cxx
index 2ecbe38cc03a..497aa6bfa2d6 100644
--- a/forms/source/component/File.cxx
+++ b/forms/source/component/File.cxx
@@ -168,7 +168,7 @@ void OFileControlModel::setFastPropertyValue_NoBroadcast(sal_Int32 nHandle, cons
sal_Bool OFileControlModel::convertFastPropertyValue(Any& rConvertedValue, Any& rOldValue, sal_Int32 nHandle, const Any& rValue)
- throw( IllegalArgumentException )
+ throw( IllegalArgumentException, RuntimeException, std::exception )
{
switch (nHandle)
{
diff --git a/forms/source/component/File.hxx b/forms/source/component/File.hxx
index 04cd3f7e0a5d..a3888b5d14eb 100644
--- a/forms/source/component/File.hxx
+++ b/forms/source/component/File.hxx
@@ -57,7 +57,7 @@ public:
virtual void SAL_CALL setFastPropertyValue_NoBroadcast(sal_Int32 nHandle, const css::uno::Any& rValue) throw ( css::uno::Exception, std::exception) override;
virtual sal_Bool SAL_CALL convertFastPropertyValue(css::uno::Any& rConvertedValue, css::uno::Any& rOldValue, sal_Int32 nHandle, const css::uno::Any& rValue )
- throw(css::lang::IllegalArgumentException) override;
+ throw(css::lang::IllegalArgumentException, css::uno::RuntimeException, std::exception) override;
virtual css::uno::Any getPropertyDefaultByHandle( sal_Int32 _nHandle ) const override;