mirror of
https://github.com/Barubary/dsdecmp.git
synced 2024-11-14 14:55:14 +01:00
a597cd23a9
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.
15 lines
349 B
Java
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);
|
|
}
|
|
|
|
}
|