From 8923103eeedc79ee8e4384ea4a1df57d76a0d5d4 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Mon, 21 Jul 2014 10:40:45 +0100 Subject: coverity#706376 Uncaught exception Change-Id: Ic18823fd60826c144058df32c27ab25d58664e30 --- connectivity/source/drivers/odbc/OConnection.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'connectivity/source/drivers/odbc') diff --git a/connectivity/source/drivers/odbc/OConnection.cxx b/connectivity/source/drivers/odbc/OConnection.cxx index 93c0b3ee83b1..5a0761d81d37 100644 --- a/connectivity/source/drivers/odbc/OConnection.cxx +++ b/connectivity/source/drivers/odbc/OConnection.cxx @@ -304,7 +304,7 @@ Reference< XPreparedStatement > SAL_CALL OConnection::prepareStatement( const OU Reference< XPreparedStatement > SAL_CALL OConnection::prepareCall( const OUString& /*sql*/ ) throw(SQLException, RuntimeException, std::exception) { - ::dbtools::throwFeatureNotImplementedException( "XConnection::prepareCall", *this ); + ::dbtools::throwFeatureNotImplementedSQLException( "XConnection::prepareCall", *this ); return NULL; } @@ -464,7 +464,7 @@ Reference< ::com::sun::star::container::XNameAccess > SAL_CALL OConnection::getT void SAL_CALL OConnection::setTypeMap( const Reference< ::com::sun::star::container::XNameAccess >& /*typeMap*/ ) throw(SQLException, RuntimeException, std::exception) { - ::dbtools::throwFeatureNotImplementedException( "XConnection::setTypeMap", *this ); + ::dbtools::throwFeatureNotImplementedSQLException( "XConnection::setTypeMap", *this ); } // XCloseable -- cgit