Skip to content

Commit

Permalink
[#206] fix(TokenErrorCode): 토큰 만료 메시지 status 401로 변경 (#207)
Browse files Browse the repository at this point in the history
  • Loading branch information
hoonyworld committed Sep 5, 2024
1 parent de3efa5 commit 74e84c6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
@RequiredArgsConstructor
public enum TokenErrorCode implements BaseErrorCode {

AUTHENTICATION_CODE_EXPIRED(403, "토큰이 만료되었습니다"),
REFRESH_TOKEN_NOT_FOUND(404, "리프레쉬토큰이 없습니다"),
AUTHENTICATION_CODE_EXPIRED(401, "토큰이 만료되었습니다"),
REFRESH_TOKEN_NOT_FOUND(404, "리프레쉬 토큰이 존재하지 않습니다"),
TOKEN_INCORRECT_ERROR(400, "잘못된 토큰입니다");

private final int status;
Expand Down

0 comments on commit 74e84c6

Please sign in to comment.