diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2001-10-17 17:38:07 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2001-10-17 17:38:07 +0000 |
commit | c62e4be1d07859567a9036de54d89396beafd8ff (patch) | |
tree | 701a1e74b6ff8ce5db905a1094fede1f7014fb64 /connectivity/source/drivers/mozab/MStatement.hxx | |
parent | bc134a87a1117af8f551c2856160f9a7e7327248 (diff) |
#92924#: exception specifications
Diffstat (limited to 'connectivity/source/drivers/mozab/MStatement.hxx')
-rw-r--r-- | connectivity/source/drivers/mozab/MStatement.hxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/connectivity/source/drivers/mozab/MStatement.hxx b/connectivity/source/drivers/mozab/MStatement.hxx index 023db6a589de..5894f3869f78 100644 --- a/connectivity/source/drivers/mozab/MStatement.hxx +++ b/connectivity/source/drivers/mozab/MStatement.hxx @@ -2,9 +2,9 @@ * * $RCSfile: MStatement.hxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: mmaher $ $Date: 2001-10-11 10:07:54 $ + * last change: $Author: hr $ $Date: 2001-10-17 18:38:07 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -211,8 +211,8 @@ namespace connectivity // OComponentHelper virtual void SAL_CALL disposing(void){OStatement_BASE::disposing();} // XInterface - virtual void SAL_CALL release() throw(::com::sun::star::uno::RuntimeException); - virtual void SAL_CALL acquire() throw(::com::sun::star::uno::RuntimeException); + virtual void SAL_CALL release() throw(); + virtual void SAL_CALL acquire() throw(); // XInterface virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException); //XTypeProvider @@ -250,7 +250,7 @@ namespace connectivity // OComponentHelper virtual void SAL_CALL disposing(void); // XInterface - virtual void SAL_CALL release() throw(::com::sun::star::uno::RuntimeException); + virtual void SAL_CALL release() throw(); }; class OStatement : public OStatement_BASE2, @@ -265,8 +265,8 @@ namespace connectivity DECLARE_SERVICE_INFO(); virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException); - virtual void SAL_CALL acquire() throw(::com::sun::star::uno::RuntimeException); - virtual void SAL_CALL release() throw(::com::sun::star::uno::RuntimeException); + virtual void SAL_CALL acquire() throw(); + virtual void SAL_CALL release() throw(); // XBatchExecution virtual void SAL_CALL addBatch( const ::rtl::OUString& sql ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); virtual void SAL_CALL clearBatch( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); |