diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-06-27 17:07:09 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-06-27 18:24:58 +0100 |
commit | 27d64de97d27deea3c474660ecd39136408754a2 (patch) | |
tree | fc0cf7c4f25113fea8af05ba0e1083180c9d502d /ucb | |
parent | 4af4d4858b2230ce93fb965c68fbb92e1ff3c07c (diff) |
coverit#1308447 Uncaught exception
Change-Id: I9bf204458d2edfaf4c88703598ac0c88680304cf
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/webdav-neon/webdavcontent.cxx | 2 | ||||
-rw-r--r-- | ucb/source/ucp/webdav-neon/webdavcontent.hxx | 2 |
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 8df17d3e5102..065d013ae0e8 100644 --- a/ucb/source/ucp/webdav-neon/webdavcontent.cxx +++ b/ucb/source/ucp/webdav-neon/webdavcontent.cxx @@ -2246,7 +2246,7 @@ void Content::insert( const uno::Reference< io::XInputStream > & xInputStream, bool bReplaceExisting, const uno::Reference< ucb::XCommandEnvironment >& Environment ) - throw( uno::Exception ) + throw( uno::Exception, std::exception ) { bool bTransient, bCollection; OUString aEscapedTitle; diff --git a/ucb/source/ucp/webdav-neon/webdavcontent.hxx b/ucb/source/ucp/webdav-neon/webdavcontent.hxx index 6e9540704c78..a98b244675d1 100644 --- a/ucb/source/ucp/webdav-neon/webdavcontent.hxx +++ b/ucb/source/ucp/webdav-neon/webdavcontent.hxx @@ -165,7 +165,7 @@ private: bool bReplaceExisting, const com::sun::star::uno::Reference< com::sun::star::ucb::XCommandEnvironment >& Environment ) - throw( ::com::sun::star::uno::Exception ); + throw( ::com::sun::star::uno::Exception, std::exception ); // Command "transfer" void transfer( const ::com::sun::star::ucb::TransferInfo & rArgs, |