FileDocCategorySizeDatePackage
JarException.javaAPI DocJava SE 5 API727Fri Aug 26 14:57:26 BST 2005java.util.jar

JarException

public class JarException extends ZipException
Signals that an error of some sort has occurred while reading from or writing to a JAR file.
author
David Connelly
version
1.12, 12/19/03
since
1.2

Fields Summary
Constructors Summary
public JarException()
Constructs a JarException with no detail message.

    
public JarException(String s)
Constructs a JarException with the specified detail message.

param
s the detail message

	super(s);
    
Methods Summary