Skip to content

Commit

Permalink
refactor: 에러 위치 이동
Browse files Browse the repository at this point in the history
  • Loading branch information
chaewon121 committed Oct 13, 2023
1 parent 011a80a commit 24804ae
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ public enum GameExceptionType implements BaseExceptionType {
"배정 할 목적지가 존재하지 않습니다."
),

NOT_EXIST_IN_PROGRESS(
414,
HttpStatus.NOT_FOUND,
"진행 중인 게임이 존재하지 않습니다."
),

NOT_ARRIVED(
415,
HttpStatus.BAD_REQUEST,
Expand Down Expand Up @@ -64,12 +70,6 @@ public enum GameExceptionType implements BaseExceptionType {
HttpStatus.BAD_REQUEST,
"시도 횟수를 이미 다 사용한 게임입니다"
),

NOT_EXIST_IN_PROGRESS(
414,
HttpStatus.NOT_FOUND,
"진행 중인 게임이 존재하지 않습니다."
),
;

private final int errorCode;
Expand Down

0 comments on commit 24804ae

Please sign in to comment.