summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-11-06 09:24:10 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-11-06 09:24:10 +0000
commit41155a364517fb674c1f76ea66005f27e34e6ef2 (patch)
treee7846822a8db2677a3c9f46a3aebb43b5f167f3d /ucb
parenta04b96e49bbd8c2ca066accb46da6169fa348487 (diff)
coverity#1338237 Uncaught exception
Change-Id: I7a7604f250a571708225fa347e80585baaa2f03d
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/file/filrset.cxx3
-rw-r--r--ucb/source/ucp/file/filrset.hxx5
2 files changed, 5 insertions, 3 deletions
diff --git a/ucb/source/ucp/file/filrset.cxx b/ucb/source/ucp/file/filrset.cxx
index d8438742af8e..60bbfbb7a8b4 100644
--- a/ucb/source/ucp/file/filrset.cxx
+++ b/ucb/source/ucp/file/filrset.cxx
@@ -217,7 +217,8 @@ bool SAL_CALL
XResultSet_impl::OneMore(
void )
throw( sdbc::SQLException,
- uno::RuntimeException )
+ uno::RuntimeException,
+ std::exception )
{
if( ! m_nIsOpen )
return false;
diff --git a/ucb/source/ucp/file/filrset.hxx b/ucb/source/ucp/file/filrset.hxx
index 26758a4a5541..7ffcd870870d 100644
--- a/ucb/source/ucp/file/filrset.hxx
+++ b/ucb/source/ucp/file/filrset.hxx
@@ -622,8 +622,9 @@ class XResultSet_impl : public Notifier,
// Methods
bool SAL_CALL OneMore()
- throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException );
+ throw( css::sdbc::SQLException,
+ css::uno::RuntimeException,
+ std::exception );
void rowCountChanged();
void isFinalChanged();