java.util.jar
Class JarException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--java.io.IOException
|
+--java.util.zip.ZipException
|
+--java.util.jar.JarException
This exception is thrown to indicate an problem with a jar file.
Note that none of the methods in the java.util.jar package actually declare
to throw this exception, most just declare that they throw an IOException
which is super class of JarException.
Since:Author:- Mark Wielaard (mark@klomp.org)
JarException
public JarException()
Create a new JarException without a descriptive error message.
JarException
public JarException(java.lang.String message)
Create a new JarException with a descriptive error message indicating
what went wrong. This message can later be retrieved by calling the
getMessage()
method.
Parameters:
See Also: