diff --git a/types/Dojo/ExerciseCheckerError.ts b/types/Dojo/ExerciseCheckerError.ts index 21bb0d9736f92d6bfdf1795d91dc78d6916ad218..37a1b49bf0a3ffd8e4fd09d9419d173e7324ee5e 100644 --- a/types/Dojo/ExerciseCheckerError.ts +++ b/types/Dojo/ExerciseCheckerError.ts @@ -4,10 +4,15 @@ enum ExerciseCheckerError { DOCKER_COMPOSE_LOGS_ERROR = 202, DOCKER_COMPOSE_DOWN_ERROR = 203, EXERCISE_RESULTS_FOLDER_TOO_BIG = 204, - EXERCISE_RESULTS_FILE_NOT_FOUND = 205, EXERCISE_RESULTS_FILE_SCHEMA_NOT_VALID = 206, UPLOAD = 207 } +/** + * Codes that are unusable for historic reasons: + * - 205: EXERCISE_RESULTS_FILE_NOT_FOUND => From the version 2.2.0 this error is not possible anymore because the results file is now optional + */ + + export default ExerciseCheckerError; \ No newline at end of file