summaryrefslogtreecommitdiffstats
path: root/ucb
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-05-11 20:56:48 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-05-11 21:06:02 +0100
commita6b753db97b354043bc63a66634ca35436783dde (patch)
treee73cc8c2f276c2e879185ba2b0cf601be66038e7 /ucb
parentcoverity#1209903 Uncaught exception (diff)
downloadcore-a6b753db97b354043bc63a66634ca35436783dde.tar.gz
core-a6b753db97b354043bc63a66634ca35436783dde.zip
coverity#1209904 Uncaught exception
Change-Id: Ida33270344c25ffc81dccfa7a619b2911d40ae24
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/webdav-neon/webdavcontent.cxx2
-rw-r--r--ucb/source/ucp/webdav-neon/webdavcontent.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/ucb/source/ucp/webdav-neon/webdavcontent.cxx b/ucb/source/ucp/webdav-neon/webdavcontent.cxx
index 03e7b2714ad0..ff1b86c563b3 100644
--- a/ucb/source/ucp/webdav-neon/webdavcontent.cxx
+++ b/ucb/source/ucp/webdav-neon/webdavcontent.cxx
@@ -1540,7 +1540,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 )
{
uno::Reference< ucb::XContentIdentifier > xIdentifier;
rtl::Reference< ContentProvider > xProvider;
diff --git a/ucb/source/ucp/webdav-neon/webdavcontent.hxx b/ucb/source/ucp/webdav-neon/webdavcontent.hxx
index 12a7e8aaed74..55de0ce001da 100644
--- a/ucb/source/ucp/webdav-neon/webdavcontent.hxx
+++ b/ucb/source/ucp/webdav-neon/webdavcontent.hxx
@@ -120,7 +120,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 );
typedef rtl::Reference< Content > ContentRef;
typedef std::list< ContentRef > ContentRefList;