Kaydet (Commit) 7501ee9d authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#706373 Uncaught exception

Change-Id: Iee4774dffd43be3fc3eacbcc81f150706625fcad
üst 051a8f95
......@@ -217,9 +217,8 @@ void OStatement_Base::reset() throw (SQLException)
// clearMyResultSet
// If a ResultSet was created for this Statement, close it
void OStatement_Base::clearMyResultSet () throw (SQLException)
void OStatement_Base::clearMyResultSet()
throw (SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_aMutex );
checkDisposed(OStatement_BASE::rBHelper.bDisposed);
......
......@@ -104,7 +104,7 @@ namespace connectivity
virtual void setUsingBookmarks(sal_Bool _bUseBookmark) ;
void reset () throw( ::com::sun::star::sdbc::SQLException);
void clearMyResultSet () throw( ::com::sun::star::sdbc::SQLException);
void clearMyResultSet() throw (css::sdbc::SQLException, css::uno::RuntimeException);
void setWarning (const ::com::sun::star::sdbc::SQLWarning &ex)
throw (css::sdbc::SQLException, css::uno::RuntimeException);
bool lockIfNecessary (const OUString& sql) throw( ::com::sun::star::sdbc::SQLException);
......
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