Skip to content

Commit

Permalink
fix: 상태코드 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Sangwook02 committed Feb 9, 2024
1 parent a40be92 commit 534cb24
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public enum ErrorCode {

// Member
MEMBER_NOT_FOUND(HttpStatus.NOT_FOUND, "존재하지 않는 회원입니다."),
MEMBER_DELETED(HttpStatus.BAD_REQUEST, "탈퇴한 회원입니다.");
MEMBER_DELETED(HttpStatus.CONFLICT, "탈퇴한 회원입니다.");

private final HttpStatus status;
private final String message;
Expand Down

0 comments on commit 534cb24

Please sign in to comment.