mirror of
https://github.com/Barubary/dsdecmp.git
synced 2024-11-14 23:05:13 +01:00
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);
|
||
|
}
|
||
|
|
||
|
}
|