ZipExceptionpublic class ZipException extends IOException This runtime exception is thrown by {@code ZipFile} and {@code
ZipInputStream} when the file or stream is not a valid ZIP file. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public ZipException()Constructs a new {@code ZipException} instance.
super();
| public ZipException(String detailMessage)Constructs a new {@code ZipException} instance with the specified
message.
super(detailMessage);
|
|