diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-08-07 17:08:19 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-08-07 18:00:53 +0100 |
commit | 58edf5120d227575f313d4ca52cee19f2d4dcff7 (patch) | |
tree | 27a001a47333f01229a6c55a4135865fb862f4fc /package | |
parent | a92bd2988ecda92ceed1d55dba083a68cc0f86b0 (diff) |
coverity#706593 Uncaught exception
Change-Id: I9cb2057a866d11dec97e5bfd03d0663d09f079f7
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 619446f1dcff..e806cdb31fb0 100644 --- a/package/source/zippackage/zipfileaccess.cxx +++ b/package/source/zippackage/zipfileaccess.cxx @@ -238,7 +238,7 @@ uno::Any SAL_CALL OZipFileAccess::getByName( const OUString& aName ) throw lang::DisposedException(THROW_WHERE ); if ( !m_pZipFile ) - throw io::NotConnectedException(THROW_WHERE ); + throw uno::RuntimeException(THROW_WHERE); EntryHash::iterator aIter = m_pZipFile->GetEntryHash().find( aName ); if ( aIter == m_pZipFile->GetEntryHash().end() ) |