diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-08-07 17:15:22 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-08-07 18:00:54 +0100 |
commit | e88157144d59f277190f40492790a3375acc3bbb (patch) | |
tree | cf53f0c41ea82ff1c0846a12847ac7551703f5b1 /package | |
parent | 80231ff414371a0cd052639efc1329c396eb4f7f (diff) |
coverity#706587 Uncaught exception
Change-Id: I33836bfc2d0e18a12774a9e65d814f50ae10d7b8
Diffstat (limited to 'package')
-rw-r--r-- | package/source/zippackage/zipfileaccess.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/source/zippackage/zipfileaccess.cxx b/package/source/zippackage/zipfileaccess.cxx index 7ee229884938..c070d83d22b6 100644 --- a/package/source/zippackage/zipfileaccess.cxx +++ b/package/source/zippackage/zipfileaccess.cxx @@ -350,7 +350,7 @@ sal_Bool SAL_CALL OZipFileAccess::hasElements() throw lang::DisposedException(THROW_WHERE ); if ( !m_pZipFile ) - throw io::NotConnectedException(THROW_WHERE ); + throw uno::RuntimeException(THROW_WHERE); return ( m_pZipFile->GetEntryHash().size() != 0 ); } |