summaryrefslogtreecommitdiff
path: root/mysqlc/source/mysqlc_driver.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'mysqlc/source/mysqlc_driver.hxx')
-rw-r--r--mysqlc/source/mysqlc_driver.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/mysqlc/source/mysqlc_driver.hxx b/mysqlc/source/mysqlc_driver.hxx
index d63ed055e6f0..c66748dab851 100644
--- a/mysqlc/source/mysqlc_driver.hxx
+++ b/mysqlc/source/mysqlc_driver.hxx
@@ -84,20 +84,20 @@ namespace connectivity
static Sequence< OUString > getSupportedServiceNames_Static() throw(RuntimeException);
// XServiceInfo
- OUString SAL_CALL getImplementationName() throw(RuntimeException);
- sal_Bool SAL_CALL supportsService(const OUString& ServiceName) throw(RuntimeException);
- Sequence< OUString > SAL_CALL getSupportedServiceNames() throw(RuntimeException);
+ OUString SAL_CALL getImplementationName() throw(RuntimeException, std::exception);
+ sal_Bool SAL_CALL supportsService(const OUString& ServiceName) throw(RuntimeException, std::exception);
+ Sequence< OUString > SAL_CALL getSupportedServiceNames() throw(RuntimeException, std::exception);
// XDriver
Reference< ::com::sun::star::sdbc::XConnection > SAL_CALL connect(const OUString& url, const Sequence< ::com::sun::star::beans::PropertyValue >& info)
- throw(SQLException, RuntimeException);
+ throw(SQLException, RuntimeException, std::exception);
- sal_Bool SAL_CALL acceptsURL(const OUString& url) throw(SQLException, RuntimeException);
+ sal_Bool SAL_CALL acceptsURL(const OUString& url) throw(SQLException, RuntimeException, std::exception);
Sequence< ::com::sun::star::sdbc::DriverPropertyInfo > SAL_CALL getPropertyInfo(const OUString& url, const Sequence< ::com::sun::star::beans::PropertyValue >& info)
- throw(SQLException, RuntimeException);
+ throw(SQLException, RuntimeException, std::exception);
- sal_Int32 SAL_CALL getMajorVersion() throw(RuntimeException);
- sal_Int32 SAL_CALL getMinorVersion() throw(RuntimeException);
+ sal_Int32 SAL_CALL getMajorVersion() throw(RuntimeException, std::exception);
+ sal_Int32 SAL_CALL getMinorVersion() throw(RuntimeException, std::exception);
inline Reference< ::com::sun::star::lang::XMultiServiceFactory > getFactory() const { return m_xFactory; }