diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-06-27 17:22:53 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-06-27 18:25:03 +0100 |
commit | e5e37b2b930644051cc1253e0ee71e3ffe5b3cf8 (patch) | |
tree | 2c38393218a236f9ee31852cd62f2cc5c7a9f73d /ucb | |
parent | f957387666d03c5135987c39feb4f747bfab2a1f (diff) |
coverity#1308459 Uncaught exception
Change-Id: I32fc8dd437bee6a5fdbf3ea51926ddc23b3263d8
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/package/pkgcontent.cxx | 2 | ||||
-rw-r--r-- | ucb/source/ucp/package/pkgcontent.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ucb/source/ucp/package/pkgcontent.cxx b/ucb/source/ucp/package/pkgcontent.cxx index 3494813c16c1..5d0e6bd8ce78 100644 --- a/ucb/source/ucp/package/pkgcontent.cxx +++ b/ucb/source/ucp/package/pkgcontent.cxx @@ -1040,7 +1040,7 @@ uno::Reference< sdbc::XRow > Content::getPropertyValues( uno::Sequence< uno::Any > Content::setPropertyValues( const uno::Sequence< beans::PropertyValue >& rValues, const uno::Reference< ucb::XCommandEnvironment > & xEnv ) - throw( uno::Exception ) + throw( uno::Exception, std::exception ) { osl::ClearableGuard< osl::Mutex > aGuard( m_aMutex ); diff --git a/ucb/source/ucp/package/pkgcontent.hxx b/ucb/source/ucp/package/pkgcontent.hxx index b784cb63e190..8f8c4239ff29 100644 --- a/ucb/source/ucp/package/pkgcontent.hxx +++ b/ucb/source/ucp/package/pkgcontent.hxx @@ -159,7 +159,7 @@ private: ::com::sun::star::beans::PropertyValue >& rValues, const ::com::sun::star::uno::Reference< ::com::sun::star::ucb::XCommandEnvironment > & xEnv ) - throw( ::com::sun::star::uno::Exception ); + throw( ::com::sun::star::uno::Exception, std::exception ); com::sun::star::uno::Reference< com::sun::star::container::XHierarchicalNameAccess > |