FileDocCategorySizeDatePackage
ZipException.javaAPI DocAndroid 1.5 API1655Wed May 06 22:41:02 BST 2009java.util.zip

ZipException

public 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.
see
ZipFile
see
ZipInputStream
since
Android 1.0

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

since
Android 1.0


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

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

        super(detailMessage);
    
Methods Summary