diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-05-23 17:15:38 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-05-23 20:37:36 +0100 |
commit | 90b4c3a888de093a2f42318c5caeb5419e0e7d1c (patch) | |
tree | 944c2f4734905a77f0150e9e4ff9ea7420d2c5c9 /connectivity | |
parent | 6878f0debf38ba93aa5fad6c303a3c9e8e12b2ed (diff) |
coverity#1103737 Uncaught exception
Change-Id: I53aab00dfad0310a7846fdf7185c50036329343c
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/firebird/Connection.cxx | 2 | ||||
-rw-r--r-- | connectivity/source/drivers/firebird/Connection.hxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/source/drivers/firebird/Connection.cxx b/connectivity/source/drivers/firebird/Connection.cxx index 53349ee53cb7..69b2377b1af4 100644 --- a/connectivity/source/drivers/firebird/Connection.cxx +++ b/connectivity/source/drivers/firebird/Connection.cxx @@ -788,7 +788,7 @@ uno::Reference< XTablesSupplier > Connection::createCatalog() } -void Connection::rebuildIndexes() throw(SQLException) +void Connection::rebuildIndexes() throw (SQLException, RuntimeException) { MutexGuard aGuard(m_aMutex); diff --git a/connectivity/source/drivers/firebird/Connection.hxx b/connectivity/source/drivers/firebird/Connection.hxx index a68e181126fb..1b42a64e859f 100644 --- a/connectivity/source/drivers/firebird/Connection.hxx +++ b/connectivity/source/drivers/firebird/Connection.hxx @@ -149,9 +149,9 @@ namespace connectivity * versions. */ void rebuildIndexes() - throw(::com::sun::star::sdbc::SQLException); + throw (css::sdbc::SQLException, css::uno::RuntimeException); void buildTypeInfo() - throw(::com::sun::star::sdbc::SQLException); + throw (css::sdbc::SQLException); /** * Creates a new transaction with the desired parameters, if |