diff options
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/file/filrset.cxx | 3 | ||||
-rw-r--r-- | ucb/source/ucp/file/filrset.hxx | 5 |
2 files changed, 5 insertions, 3 deletions
diff --git a/ucb/source/ucp/file/filrset.cxx b/ucb/source/ucp/file/filrset.cxx index d8438742af8e..60bbfbb7a8b4 100644 --- a/ucb/source/ucp/file/filrset.cxx +++ b/ucb/source/ucp/file/filrset.cxx @@ -217,7 +217,8 @@ bool SAL_CALL XResultSet_impl::OneMore( void ) throw( sdbc::SQLException, - uno::RuntimeException ) + uno::RuntimeException, + std::exception ) { if( ! m_nIsOpen ) return false; diff --git a/ucb/source/ucp/file/filrset.hxx b/ucb/source/ucp/file/filrset.hxx index 26758a4a5541..7ffcd870870d 100644 --- a/ucb/source/ucp/file/filrset.hxx +++ b/ucb/source/ucp/file/filrset.hxx @@ -622,8 +622,9 @@ class XResultSet_impl : public Notifier, // Methods bool SAL_CALL OneMore() - throw( com::sun::star::sdbc::SQLException, - com::sun::star::uno::RuntimeException ); + throw( css::sdbc::SQLException, + css::uno::RuntimeException, + std::exception ); void rowCountChanged(); void isFinalChanged(); |