If we can have a few more information...

This commit is contained in:
Julien Nabet 2012-02-12 14:29:55 +01:00
parent 21b3a9a6be
commit 47e38fb11f

View File

@ -538,9 +538,10 @@ uno::Reference< io::XInputStream > SAL_CALL ZipPackageStream::getInputStream()
OSL_FAIL( "ZipException thrown" );//rException.Message);
return uno::Reference < io::XInputStream > ();
}
catch ( Exception & )
catch ( Exception &ex )
{
OSL_FAIL( "Exception is thrown during stream wrapping!\n" );
OSL_FAIL(OUStringToOString(ex.Message, RTL_TEXTENCODING_UTF8).getStr());
return uno::Reference < io::XInputStream > ();
}
}