Exception #22

Merged
brandleo merged 3 commits from Exception into main 2022-03-18 09:21:53 +01:00
2 changed files with 7 additions and 2 deletions
Showing only changes of commit 0fafa3e0e7 - Show all commits

View File

@ -1,5 +1,8 @@
package ch.zhaw.pm2.racetrack; package ch.zhaw.pm2.racetrack;
public class InvalidFileFormatException extends Exception { public class InvalidFileFormatException extends Exception {
// TODO: implementation
public InvalidFileFormatException(String errorMessage) {
super(errorMessage);
}
} }

View File

@ -1,5 +1,7 @@
package ch.zhaw.pm2.racetrack; package ch.zhaw.pm2.racetrack;
public class InvalidTrackFormatException extends Exception { public class InvalidTrackFormatException extends Exception {
// TODO: implementation public InvalidTrackFormatException(String errorMessage) {
super(errorMessage);
}
} }