summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-05-23 09:23:47 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-05-23 14:15:58 +0100
commitcb30efc79f46cbd57fd138a38b483b19ba9bdd4e (patch)
tree40df3ecc87fab5b4699efe7f07914892dd52b4a3 /ucb
parent9b62a5207745da6b926d2a311e5ddd16da1ae05b (diff)
coverity#1215314 Uncaught exception
Change-Id: I1e3e7db0a9dc29c991f4f8ddbdcb4f3564410fba
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 60e0396f3dbc..f67c85240b80 100644
--- a/ucb/source/ucp/webdav-neon/webdavcontent.cxx
+++ b/ucb/source/ucp/webdav-neon/webdavcontent.cxx
@@ -1939,7 +1939,7 @@ uno::Sequence< uno::Any > Content::setPropertyValues(
uno::Any Content::open(
const ucb::OpenCommandArgument3 & rArg,
const uno::Reference< ucb::XCommandEnvironment > & xEnv )
- throw( uno::Exception )
+ throw (uno::Exception, std::exception)
{
uno::Any aRet;
diff --git a/ucb/source/ucp/webdav-neon/webdavcontent.hxx b/ucb/source/ucp/webdav-neon/webdavcontent.hxx
index 060a3f5367d2..d738ce2f2666 100644
--- a/ucb/source/ucp/webdav-neon/webdavcontent.hxx
+++ b/ucb/source/ucp/webdav-neon/webdavcontent.hxx
@@ -154,7 +154,7 @@ private:
const com::sun::star::ucb::OpenCommandArgument3 & rArg,
const com::sun::star::uno::Reference<
com::sun::star::ucb::XCommandEnvironment > & xEnv )
- throw( ::com::sun::star::uno::Exception );
+ throw (css::uno::Exception, std::exception);
// Command "post"
void post( const com::sun::star::ucb::PostCommandArgument2 & rArg,