diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-08-07 17:07:39 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-08-07 18:00:53 +0100 |
commit | a92bd2988ecda92ceed1d55dba083a68cc0f86b0 (patch) | |
tree | e73e113304092784d75da72d2ba920ae7fb4ad30 /package | |
parent | 45c2c0272052f7f23aed0bef11a6289545a49749 (diff) |
coverity#706596 Uncaught exception
Change-Id: I1fb6ccbe12e3ec760a5474826170bcbf6b5146f9
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 688f389df319..619446f1dcff 100644 --- a/package/source/zippackage/zipfileaccess.cxx +++ b/package/source/zippackage/zipfileaccess.cxx @@ -320,7 +320,7 @@ sal_Bool SAL_CALL OZipFileAccess::hasByName( 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 ); |