diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-08-17 12:21:01 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-08-17 16:39:21 +0100 |
commit | f8ce2e049c54bd68e5afa1632b8b43e43695cddc (patch) | |
tree | d0e130fc333b47cecfe4574182bf93dda276698d /offapi | |
parent | d2927e38a85e695662cfb08e5dd49bfb1b7c8b85 (diff) |
coverity#983635 Uncaught exception
Change-Id: I4be3600af6ee97ba9f962edf9723c04d89b161e4
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/sdb/tools/XDataSourceMetaData.idl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/offapi/com/sun/star/sdb/tools/XDataSourceMetaData.idl b/offapi/com/sun/star/sdb/tools/XDataSourceMetaData.idl index ba09c51f7829..eb7f48159680 100644 --- a/offapi/com/sun/star/sdb/tools/XDataSourceMetaData.idl +++ b/offapi/com/sun/star/sdb/tools/XDataSourceMetaData.idl @@ -21,6 +21,7 @@ #define __com_sun_star_sdb_tools_XDataSourceMetaData_idl__ #include <com/sun/star/uno/XInterface.idl> +#include <com/sun/star/sdbc/SQLException.idl> module com { module sun { module star { module sdb { module tools { @@ -29,7 +30,7 @@ interface XDataSourceMetaData /** determines whether the data source supports queries in the <code>FROM</code> part of a <code>SELECT</code> statement. */ - boolean supportsQueriesInFrom( ); + boolean supportsQueriesInFrom() raises ( com::sun::star::sdbc::SQLException ); }; }; }; }; }; }; |