diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-07-01 15:37:44 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-07-01 16:43:05 +0100 |
commit | 968f633b247d06c958d0b5695ab1ed962509f795 (patch) | |
tree | 464d3fe9ca4e8e7f5a084636345dad4ead2a1d7f /include | |
parent | b35f3dfb1afa78722a4cd8e69a625456a6dd01d6 (diff) |
coverity#706382 Uncaught exception
and
coverity#706377
coverity#706378
coverity#706382
Change-Id: I17f672e31867b1be77c16a8a6e121a8f67df7c90
Diffstat (limited to 'include')
-rw-r--r-- | include/connectivity/dbexception.hxx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/connectivity/dbexception.hxx b/include/connectivity/dbexception.hxx index 74b548c96289..1e7fade75af1 100644 --- a/include/connectivity/dbexception.hxx +++ b/include/connectivity/dbexception.hxx @@ -226,13 +226,18 @@ OOO_DLLPUBLIC_DBTOOLS OUString getStandardSQLState( StandardSQLState _eState ); /** throws an exception with SQL state IM001, saying that a certain function is not supported */ -OOO_DLLPUBLIC_DBTOOLS void throwFunctionNotSupportedException( +OOO_DLLPUBLIC_DBTOOLS void throwFunctionNotSupportedSQLException( const OUString& _rFunctionName, const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& _rxContext, const ::com::sun::star::uno::Any& _rNextException = ::com::sun::star::uno::Any() ) throw ( ::com::sun::star::sdbc::SQLException ); +OOO_DLLPUBLIC_DBTOOLS void throwFunctionNotSupportedRuntimeException( + const OUString& _rFunctionName, + const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& _rxContext + ) + throw (css::uno::RuntimeException ); /** throws a function sequence (HY010) exception */ |