Code Cleanup

This commit is contained in:
romanschenk37 2022-03-25 21:26:56 +01:00
parent c72ae904e7
commit a002362b62
1 changed files with 1 additions and 1 deletions

View File

@ -4,8 +4,8 @@ package ch.zhaw.pm2.racetrack;
* Class for Exception when invalid Fileformat is used. * Class for Exception when invalid Fileformat is used.
*/ */
public class InvalidFileFormatException extends Exception { public class InvalidFileFormatException extends Exception {
public InvalidFileFormatException(){super();}
public InvalidFileFormatException(String errorMessage) { public InvalidFileFormatException(String errorMessage) {
super(errorMessage); super(errorMessage);
} }
public InvalidFileFormatException(){super();}
} }