|
package crosby.binary.file;
|
|
|
|
import java.io.IOException;
|
|
|
|
public class FileFormatException extends IOException {
|
|
|
|
public FileFormatException(String string) {
|
|
super(string);
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private static final long serialVersionUID = -8128010128748910923L;
|
|
|
|
}
|