Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dca575999e | ||
|
|
6080b48b82 | ||
|
|
0fafa3e0e7 |
@@ -1,5 +1,10 @@
|
||||
package ch.zhaw.pm2.racetrack;
|
||||
|
||||
/**
|
||||
* Class for Exception when invalid Fileformat is used.
|
||||
*/
|
||||
public class InvalidFileFormatException extends Exception {
|
||||
// TODO: implementation
|
||||
public InvalidFileFormatException(String errorMessage) {
|
||||
super(errorMessage);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,10 @@
|
||||
package ch.zhaw.pm2.racetrack;
|
||||
|
||||
/**
|
||||
* Class for Exception when invalid track format is used.
|
||||
*/
|
||||
public class InvalidTrackFormatException extends Exception {
|
||||
// TODO: implementation
|
||||
public InvalidTrackFormatException(String errorMessage) {
|
||||
super(errorMessage);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user