mirror of https://github.com/apache/poi.git
bug 59776: don't swallow cause of exception in ZipPackagePropertiesMashaller exception handling
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1750893 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4aea069765
commit
4652533e52
|
@ -56,7 +56,7 @@ public final class ZipPackagePropertiesMarshaller extends PackagePropertiesMarsh
|
||||||
}
|
}
|
||||||
zos.closeEntry();
|
zos.closeEntry();
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
throw new OpenXML4JException(e.getLocalizedMessage());
|
throw new OpenXML4JException(e.getLocalizedMessage(), e);
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue