Kaydet (Commit) a4e5020f authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1219792 Uncaught exception

Change-Id: Ibbcfb5cda4ce4f23f80ef4ba610e4fda6f8df41f
üst a921f41a
......@@ -617,7 +617,7 @@ NeonSession::~NeonSession( )
}
void NeonSession::Init( const DAVRequestEnvironment & rEnv )
throw ( std::exception )
throw (css::uno::RuntimeException, std::exception)
{
osl::Guard< osl::Mutex > theGuard( m_aMutex );
m_aEnv = rEnv;
......@@ -625,7 +625,7 @@ void NeonSession::Init( const DAVRequestEnvironment & rEnv )
}
void NeonSession::Init()
throw (css::uno::RuntimeException, std::exception )
throw (css::uno::RuntimeException, std::exception)
{
osl::Guard< osl::Mutex > theGuard( m_aMutex );
......
......@@ -236,7 +236,7 @@ private:
throw (css::uno::RuntimeException, std::exception);
void Init( const DAVRequestEnvironment & rEnv )
throw ( std::exception );
throw (css::uno::RuntimeException, std::exception);
// ret: true => retry request.
void HandleError( int nError,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment