diff options
-rw-r--r-- | stoc/source/invocation/invocation.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stoc/source/invocation/invocation.cxx b/stoc/source/invocation/invocation.cxx index 619c6f8942b7..3001993db4e9 100644 --- a/stoc/source/invocation/invocation.cxx +++ b/stoc/source/invocation/invocation.cxx @@ -478,7 +478,7 @@ Any Invocation_Impl::getValue( const OUString& PropertyName ) if (_xDirect.is()) return _xDirect->getValue( PropertyName ); } - catch (UnknownPropertyException &) + catch (Exception &) { if (!comphelper::Automation::AutomationInvokedZone::isActive()) throw; @@ -522,7 +522,7 @@ void Invocation_Impl::setValue( const OUString& PropertyName, const Any& Value ) return; } } - catch (UnknownPropertyException &) + catch (Exception &) { if (!comphelper::Automation::AutomationInvokedZone::isActive()) throw; |