Kaydet (Commit) aa79a832 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#706585 Uncaught exception

Change-Id: Ic8d2963536b793f0a229901d9e13d8e54842d9b9
üst e89358ae
......@@ -56,6 +56,7 @@ interface XDataSinkEncrSupport: com::sun::star::uno::XInterface
*/
::com::sun::star::io::XInputStream getDataStream()
raises( ::com::sun::star::packages::WrongPasswordException,
::com::sun::star::packages::zip::ZipException,
::com::sun::star::io::IOException );
......
......@@ -165,7 +165,7 @@ public:
// XDataSinkEncrSupport
virtual ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream > SAL_CALL getDataStream()
throw ( ::com::sun::star::packages::WrongPasswordException,
throw ( ::com::sun::star::packages::WrongPasswordException, ::com::sun::star::packages::zip::ZipException,
::com::sun::star::io::IOException,
::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream > SAL_CALL getRawStream()
......
......@@ -516,7 +516,7 @@ uno::Reference< io::XInputStream > SAL_CALL ZipPackageStream::getInputStream()
// XDataSinkEncrSupport
uno::Reference< io::XInputStream > SAL_CALL ZipPackageStream::getDataStream()
throw ( packages::WrongPasswordException,
throw ( packages::WrongPasswordException, ZipException,
io::IOException,
RuntimeException, std::exception )
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment