diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-05-24 12:13:10 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-05-24 13:03:48 +0100 |
commit | d6e0201fa9917b501b9c3c055c903ce755690953 (patch) | |
tree | 68cbd86258137b151b180c92b57c41b69432fa6c /ucb | |
parent | a71f7409c50ec02f73aec63605605625ddaa52a2 (diff) |
coverity#983995 Uncaught exception
Change-Id: I2ba52bee850646a82153df898fb73e2b01720598
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/webdav-neon/NeonSession.cxx | 2 | ||||
-rw-r--r-- | ucb/source/ucp/webdav-neon/NeonSession.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ucb/source/ucp/webdav-neon/NeonSession.cxx b/ucb/source/ucp/webdav-neon/NeonSession.cxx index 0f8963501392..6a9a34915fee 100644 --- a/ucb/source/ucp/webdav-neon/NeonSession.cxx +++ b/ucb/source/ucp/webdav-neon/NeonSession.cxx @@ -625,7 +625,7 @@ void NeonSession::Init( const DAVRequestEnvironment & rEnv ) } void NeonSession::Init() - throw ( std::exception ) + throw (css::uno::RuntimeException, std::exception ) { osl::Guard< osl::Mutex > theGuard( m_aMutex ); diff --git a/ucb/source/ucp/webdav-neon/NeonSession.hxx b/ucb/source/ucp/webdav-neon/NeonSession.hxx index 2906af4a8c75..7a24757de097 100644 --- a/ucb/source/ucp/webdav-neon/NeonSession.hxx +++ b/ucb/source/ucp/webdav-neon/NeonSession.hxx @@ -233,7 +233,7 @@ private: friend class NeonLockStore; void Init( void ) - throw ( std::exception ); + throw (css::uno::RuntimeException, std::exception); void Init( const DAVRequestEnvironment & rEnv ) throw ( std::exception ); |