final String name = zipEntry.getName();
if (MANIFEST_XML.equals( name )) {
try {
_zipOutputStream.putNextEntry( new ZipEntry( name ) );
final CopyingParser parser = new ManifestCopyingParser();
parser.copy( inputStream, _zipOutputStream );
_zipOutputStream.closeEntry();
}
catch (XMLStreamException e) {
final Throwable nestedException = e.getNestedException();
if (nestedException != null) {