Skip to content

Commit

Permalink
fix: FormErrorProperty 콤마 해결
Browse files Browse the repository at this point in the history
- 뒤에 콤마가 없어서 enum 에서 발생한 문제를 해결했어요.
  • Loading branch information
cabbage16 committed Aug 5, 2024
1 parent 9f2088b commit 2f1b285
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public enum FormErrorProperty implements ErrorProperty {
CANNOT_UPDATE_NOT_REJECTED_FORM(HttpStatus.CONFLICT, "반려된 원서만 수정할 수 있습니다."),
INVALID_FORM_STATUS(HttpStatus.CONFLICT, "원서 상태가 유효하지 않습니다."),
INVALID_FILE(HttpStatus.BAD_REQUEST, "잘못된 파일입니다."),
MISSING_TOTAL_SCORE(HttpStatus.PRECONDITION_FAILED, "최종 점수가 입력되지 않은 원서가 존재합니다.")
MISSING_TOTAL_SCORE(HttpStatus.PRECONDITION_FAILED, "최종 점수가 입력되지 않은 원서가 존재합니다."),
WRONG_SCORE(HttpStatus.BAD_REQUEST, "점수 범위를 초과했습니다."),
;

Expand Down

0 comments on commit 2f1b285

Please sign in to comment.