coverity#706594 Uncaught exception
Change-Id: Iad8f124706789299f36127f0d0fd0a47db07bace
This commit is contained in:
parent
6b5fb7ef6a
commit
5b40565e6a
1 changed files with 13 additions and 1 deletions
|
@ -252,7 +252,19 @@ uno::Any SAL_CALL OZipFileAccess::getByName( const OUString& aName )
|
|||
false,
|
||||
m_aMutexHolder);
|
||||
}
|
||||
catch (const io::IOException& e)
|
||||
catch (const container::NoSuchElementException&)
|
||||
{
|
||||
throw;
|
||||
}
|
||||
catch (const lang::WrappedTargetException&)
|
||||
{
|
||||
throw;
|
||||
}
|
||||
catch (const uno::RuntimeException&)
|
||||
{
|
||||
throw;
|
||||
}
|
||||
catch (const uno::Exception& e)
|
||||
{
|
||||
throw lang::WrappedTargetException( "This package is unusable!",
|
||||
static_cast < OWeakObject * > ( this ),
|
||||
|
|
Loading…
Reference in a new issue