Polevoy S.V Lab_work7 #8

Closed
ChipsEater wants to merge 8 commits from LabWork07 into LabWork06
Showing only changes of commit 60bc67a8f5 - Show all commits

19
FileFormatException.java Normal file
View File

@ -0,0 +1,19 @@
import java.io.IOException;
public class FileFormatException extends IOException {
public FileFormatException() {
}
public FileFormatException(String message) {
super(message);
}
public FileFormatException(String message, Throwable cause) {
super(message, cause);
}
public FileFormatException(Throwable cause) {
super(cause);
}
}