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

coverity#1338248 Uncaught exception

Change-Id: I708e77b2745de8eb5b85cd05d0694cda18a84866
üst 4cf1ebd1
......@@ -63,7 +63,7 @@ OCalcConnection::~OCalcConnection()
}
void OCalcConnection::construct(const OUString& url,const Sequence< PropertyValue >& info)
throw(SQLException, RuntimeException, DeploymentException)
throw(SQLException, RuntimeException, DeploymentException, std::exception)
{
// open file
......
......@@ -96,7 +96,8 @@ bool OConnection::matchesExtension( const OUString& _rExt ) const
void OConnection::construct(const OUString& url,const Sequence< PropertyValue >& info)
throw( css::sdbc::SQLException,
css::uno::RuntimeException,
css::uno::DeploymentException)
css::uno::DeploymentException,
std::exception)
{
osl_atomic_increment( &m_refCount );
......
......@@ -53,7 +53,8 @@ namespace connectivity
const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& _rInfo )
throw( css::sdbc::SQLException,
css::uno::RuntimeException,
css::uno::DeploymentException) override;
css::uno::DeploymentException,
std::exception) override;
// XServiceInfo
DECLARE_SERVICE_INFO();
......
......@@ -81,7 +81,8 @@ namespace connectivity
virtual void construct(const OUString& _rUrl, const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& _rInfo )
throw( css::sdbc::SQLException,
css::uno::RuntimeException,
css::uno::DeploymentException);
css::uno::DeploymentException,
std::exception);
// OComponentHelper
virtual void SAL_CALL disposing() override;
......
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