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

DataFormatException

public class DataFormatException extends Exception
Signals that a data format error has occurred.
version
1.13, 12/19/03
author
David Connelly

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

	super();
    
public DataFormatException(String s)
Constructs a DataFormatException with the specified detail message. A detail message is a String that describes this particular exception.

param
s the String containing a detail message

	super(s);
    
Methods Summary