Skip to content

Commit

Permalink
refactor: 코드리뷰 반영
Browse files Browse the repository at this point in the history
Co-authored-by: 정핸모 <[email protected]>
  • Loading branch information
yeochaeeon and gusah009 authored May 11, 2024
1 parent 4b007a5 commit 08f648d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public enum ErrorCode {
NOT_ENOUGH_POINT("베팅 포인트는 보유한 포인트보다 많을 수 없습니다.", HttpStatus.BAD_REQUEST),
POINT_MUST_BE_POSITIVE("베팅 포인트는 양수여야 합니다.", HttpStatus.BAD_REQUEST),
NOT_PLAYED_YET("아직 게임을 시작하지 않았습니다.", HttpStatus.BAD_REQUEST),
INVALID_BETTING_POINT("베팅포인트는 1000이상 3000이하의 숫자여야합니다",HttpStatus.BAD_REQUEST),
INVALID_BETTING_POINT("베팅포인트는 " + MIN_BETTING_POINT + "이상 " + MAX_BETTING_POINT + "이하의 숫자여야합니다",HttpStatus.BAD_REQUEST),
// FILE
FILE_NOT_FOUND("해당 파일은 존재하지 않습니다.", HttpStatus.BAD_REQUEST),
// ATTENDANCE
Expand Down

0 comments on commit 08f648d

Please sign in to comment.