diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-05-24 12:50:24 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-05-24 13:03:50 +0100 |
commit | 652eb268f0902d96a359ef803c3d8ac0721ca7ac (patch) | |
tree | 69ca61cdf8cbbe92fd9c70b8dd8a23af2cc1fb3e /include | |
parent | 26055db273f6ee5da37b56f5fc5cabd7d2d1823e (diff) |
coverity#983966 Uncaught exception
Change-Id: I4928d7e9c9f4cd0dd3f6b1236da9283666766a47
Diffstat (limited to 'include')
-rw-r--r-- | include/comphelper/ChainablePropertySet.hxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/comphelper/ChainablePropertySet.hxx b/include/comphelper/ChainablePropertySet.hxx index fe294d394972..2d28c08649bb 100644 --- a/include/comphelper/ChainablePropertySet.hxx +++ b/include/comphelper/ChainablePropertySet.hxx @@ -81,7 +81,9 @@ namespace comphelper virtual void _preGetValues () throw(::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::beans::PropertyVetoException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::WrappedTargetException ) = 0; virtual void _getSingleValue( const comphelper::PropertyInfo & rInfo, ::com::sun::star::uno::Any & rValue ) - throw(::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::WrappedTargetException ) = 0; + throw (css::beans::UnknownPropertyException, + css::lang::WrappedTargetException, + css::uno::RuntimeException) = 0; virtual void _postGetValues () throw(::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::beans::PropertyVetoException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::WrappedTargetException ) = 0; |