Skip to content

Commit

Permalink
fix: validateTokensForReissue 디버깅을 위한 에러코드 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
junpakPark committed Sep 19, 2023
1 parent 75087f1 commit e6c45e2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public void validateTokensForReissue(String refreshToken, String accessToken) {
if (canReissueAccessToken) {
return;
}
throw new AuthUnauthorizedException(ILLEGAL_TOKEN);
throw new AuthUnauthorizedException(BAD_REQUEST_TOKEN);
}

public void validateTokensForRemoval(String refreshToken, String accessToken) {
Expand Down

0 comments on commit e6c45e2

Please sign in to comment.