FileDocCategorySizeDatePackage
JarException.javaAPI DocAndroid 1.5 API1575Wed May 06 22:41:02 BST 2009java.util.jar

JarException

public class JarException extends ZipException
This runtime exception is thrown when a problem occurs while reading a JAR file.
since
Android 1.0

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public JarException()
Constructs a new {@code JarException} instance.

since
Android 1.0


                   
      
        super();
    
public JarException(String detailMessage)
Constructs a new {@code JarException} instance with the specified message.

param
detailMessage the detail message for the exception.
since
Android 1.0

        super(detailMessage);
    
Methods Summary