Exception #22
|
@ -1,5 +1,8 @@
|
|||
package ch.zhaw.pm2.racetrack;
|
||||
|
||||
public class InvalidFileFormatException extends Exception {
|
||||
// TODO: implementation
|
||||
|
||||
public InvalidFileFormatException(String errorMessage) {
|
||||
super(errorMessage);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
package ch.zhaw.pm2.racetrack;
|
||||
|
||||
public class InvalidTrackFormatException extends Exception {
|
||||
// TODO: implementation
|
||||
public InvalidTrackFormatException(String errorMessage) {
|
||||
super(errorMessage);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue