Skip to content

Commit

Permalink
fix: 오타 수정 (#166)
Browse files Browse the repository at this point in the history
  • Loading branch information
SunwoongH committed Jul 10, 2024
1 parent 6c9ef1d commit 13b7549
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public void validateRefreshToken(String refreshToken) {
Claims claims = parseToken(refreshToken);
String issuer = claims.getIssuer();
if (issuer.equals(JwtType.AT.toString())) {
throw new UnauthorizedException(ErrorMessage.INVALID_ACCESS_TOKEN_VALUE);
throw new UnauthorizedException(ErrorMessage.INVALID_REFRESH_TOKEN_VALUE);
}
} catch (ExpiredJwtException e) {
throw new UnauthorizedException(ErrorMessage.EXPIRED_REFRESH_TOKEN);
Expand Down

0 comments on commit 13b7549

Please sign in to comment.