Skip to content

Commit

Permalink
feat: 휴면 상태가 아닌 사용자 예외 추가(#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
Minjae-An committed Apr 6, 2024
1 parent 4ab2943 commit 92b2244
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion be/src/main/java/yeonba/be/exception/UserException.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ public enum UserException implements BaseException {

USER_NOT_FOUND(
HttpStatus.BAD_REQUEST,
"해당 사용자가 존재하지 않습니다.");
"해당 사용자가 존재하지 않습니다."),

NOT_INACTIVE_USER(
HttpStatus.BAD_REQUEST,
"휴면 상태 사용자가 아닙니다.");

private final HttpStatus httpStatus;
private final String reason;
Expand Down

0 comments on commit 92b2244

Please sign in to comment.