FileDocCategorySizeDatePackage
ZipException.javaAPI DocJava SE 5 API828Fri Aug 26 14:57:28 BST 2005java.util.zip

ZipException

public class ZipException extends IOException
Signals that a Zip exception of some sort has occurred.
author
unascribed
version
1.16 12/19/03
see
java.io.IOException
since
JDK1.0

Fields Summary
Constructors Summary
public ZipException()
Constructs an ZipException with null as its error detail message.

	super();
    
public ZipException(String s)
Constructs an ZipException with the specified detail message.

param
s the detail message.

	super(s);
    
Methods Summary