diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-08-07 17:11:10 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-08-07 18:00:54 +0100 |
commit | 80231ff414371a0cd052639efc1329c396eb4f7f (patch) | |
tree | 2bc0e210d94cf1f89dc887e17cb08ed2cd3c6176 /package | |
parent | 3a1c2d9b4194ffde30bce6ff4381faac8caf1120 (diff) |
coverity#706588 Uncaught exception
Change-Id: Ia1672fe61f9bf158a300d5855e46de2747754ca2
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 b64f840a7a82..7ee229884938 100644 --- a/package/source/zippackage/zipfileaccess.cxx +++ b/package/source/zippackage/zipfileaccess.cxx @@ -336,7 +336,7 @@ uno::Type SAL_CALL OZipFileAccess::getElementType() throw lang::DisposedException(THROW_WHERE ); if ( !m_pZipFile ) - throw io::NotConnectedException(THROW_WHERE ); + throw uno::RuntimeException(THROW_WHERE); return cppu::UnoType<io::XInputStream>::get(); } |