From 90b4c3a888de093a2f42318c5caeb5419e0e7d1c Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 23 May 2014 17:15:38 +0100 Subject: coverity#1103737 Uncaught exception Change-Id: I53aab00dfad0310a7846fdf7185c50036329343c --- connectivity/source/drivers/firebird/Connection.cxx | 2 +- connectivity/source/drivers/firebird/Connection.hxx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'connectivity/source/drivers') 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 -- cgit