dsdecmp/Java/InvalidFileException.java
barubary a597cd23a9 added source code for both C# and Java.
Note that the Java algorithms are a port of the C# ones, and only the LZ10 and LZ11 have been tested of the Java implementation.
2009-06-07 13:40:49 +00:00

15 lines
349 B
Java

import java.io.IOException;
public class InvalidFileException extends IOException{
private static final long serialVersionUID = -8354901572139075536L;
public InvalidFileException(String message){
super(message);
}
public InvalidFileException(String message, Exception innerException){
super(message, innerException);
}
}