diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-08-07 17:09:58 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-08-07 18:00:54 +0100 |
commit | 3a1c2d9b4194ffde30bce6ff4381faac8caf1120 (patch) | |
tree | 30d4f2ceb3dfff11030c979374c8627670a4e030 /package | |
parent | 58edf5120d227575f313d4ca52cee19f2d4dcff7 (diff) |
coverity#706589 Uncaught exception
Change-Id: I60820ab1ea8b13ed6d16e714cd22abce3c2588e5
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 e806cdb31fb0..b64f840a7a82 100644 --- a/package/source/zippackage/zipfileaccess.cxx +++ b/package/source/zippackage/zipfileaccess.cxx @@ -286,7 +286,7 @@ uno::Sequence< OUString > SAL_CALL OZipFileAccess::getElementNames() throw lang::DisposedException(THROW_WHERE ); if ( !m_pZipFile ) - throw io::NotConnectedException(THROW_WHERE ); + throw uno::RuntimeException(THROW_WHERE); uno::Sequence< OUString > aNames( m_pZipFile->GetEntryHash().size() ); sal_Int32 nLen = 0; |