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

coverity#1224302 Uncaught exception

Change-Id: I622a7c41c9083f2deec21dc8c37572f978874127
üst 5ace3f3b
......@@ -176,8 +176,7 @@ void SAL_CALL OStatement_Base::cancel( ) throw(RuntimeException, std::exception
{
}
void SAL_CALL OStatement_Base::close( ) throw(SQLException, RuntimeException, std::exception)
void SAL_CALL OStatement_Base::close() throw (SQLException, RuntimeException, std::exception)
{
{
::osl::MutexGuard aGuard( m_aMutex );
......@@ -186,7 +185,7 @@ void SAL_CALL OStatement_Base::close( ) throw(SQLException, RuntimeException, s
dispose();
}
void OStatement_Base::closeResultSet () throw (SQLException)
void OStatement_Base::closeResultSet() throw (SQLException, RuntimeException, std::exception)
{
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OStatement_Base::clearMyResultSet " );
::osl::MutexGuard aGuard( m_aMutex );
......
......@@ -113,7 +113,7 @@ namespace connectivity
// create the analyzer
virtual OSQLAnalyzer* createAnalyzer();
void closeResultSet () throw( ::com::sun::star::sdbc::SQLException);
void closeResultSet() throw (css::sdbc::SQLException, css::uno::RuntimeException, std::exception);
sal_Int32 getPrecision ( sal_Int32 sqlType);
void disposeResultSet();
......
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