1999-05-18 23:33:03 +08:00
|
|
|
// DataFormatException.java
|
|
|
|
|
2000-03-08 03:55:28 +08:00
|
|
|
/* Copyright (C) 1999 Free Software Foundation
|
1999-05-18 23:33:03 +08:00
|
|
|
|
|
|
|
This file is part of libjava.
|
|
|
|
|
|
|
|
This software is copyrighted work licensed under the terms of the
|
|
|
|
Libjava License. Please consult the file "LIBJAVA_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
|
|
|
package java.util.zip;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @author Tom Tromey
|
|
|
|
* @date May 17, 1999
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Written using on-line Java Platform 1.2 API Specification.
|
|
|
|
* Believed complete and correct.
|
|
|
|
*/
|
|
|
|
|
1999-06-23 20:24:59 +08:00
|
|
|
public class DataFormatException extends Exception
|
1999-05-18 23:33:03 +08:00
|
|
|
{
|
|
|
|
public DataFormatException ()
|
|
|
|
{
|
|
|
|
super();
|
|
|
|
}
|
|
|
|
|
|
|
|
public DataFormatException (String msg)
|
|
|
|
{
|
|
|
|
super(msg);
|
|
|
|
}
|
|
|
|
}
|