JarExceptionpublic class JarException extends ZipException This runtime exception is thrown when a problem occurs while reading a JAR
file. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public JarException()Constructs a new {@code JarException} instance.
super();
| public JarException(String detailMessage)Constructs a new {@code JarException} instance with the specified
message.
super(detailMessage);
|
|