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

DataFormatException

public class DataFormatException extends Exception
{@code DataFormatException} is used to indicate an error in the format of a particular data stream which is to be uncompressed.
since
Android 1.0

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

since
Android 1.0


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

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

        super(detailMessage);
    
Methods Summary