diff options
author | Noel Grandin <noel@peralex.com> | 2014-10-27 11:34:06 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-10-27 11:34:06 +0200 |
commit | 5c90f8dd04d77ebc444b68723e0a17f166b700cd (patch) | |
tree | 96950fdec8a824677d4453c6184d017ff57f9473 /connectivity | |
parent | 7ef698355ad59c6fa263daa4ded124cf512e8926 (diff) |
cid#1249675 Uncaught exception
Change-Id: I3923a6a83bfc0a35f5a5af86cfd0e5308cfda24c
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/jdbc/ResultSet.cxx | 2 | ||||
-rw-r--r-- | connectivity/source/inc/java/sql/ResultSet.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/drivers/jdbc/ResultSet.cxx b/connectivity/source/drivers/jdbc/ResultSet.cxx index 948c127a6d89..7122937d5ca0 100644 --- a/connectivity/source/drivers/jdbc/ResultSet.cxx +++ b/connectivity/source/drivers/jdbc/ResultSet.cxx @@ -899,7 +899,7 @@ sal_Bool java_sql_ResultSet::convertFastPropertyValue( ::com::sun::star::uno::Any & rOldValue, sal_Int32 nHandle, const ::com::sun::star::uno::Any& rValue ) - throw (::com::sun::star::lang::IllegalArgumentException) + throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException) { bool bRet = false; switch(nHandle) diff --git a/connectivity/source/inc/java/sql/ResultSet.hxx b/connectivity/source/inc/java/sql/ResultSet.hxx index eb3a2ca83c2a..07a0653c9a6a 100644 --- a/connectivity/source/inc/java/sql/ResultSet.hxx +++ b/connectivity/source/inc/java/sql/ResultSet.hxx @@ -87,7 +87,7 @@ namespace connectivity ::com::sun::star::uno::Any & rOldValue, sal_Int32 nHandle, const ::com::sun::star::uno::Any& rValue ) - throw (::com::sun::star::lang::IllegalArgumentException) SAL_OVERRIDE; + throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException) SAL_OVERRIDE; virtual void SAL_CALL setFastPropertyValue_NoBroadcast( sal_Int32 nHandle, const ::com::sun::star::uno::Any& rValue |