Skip to content

Commit

Permalink
[Refactor] #275 - 토큰 재발급 파싱 함수 예외 처리 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
mjKim1229 committed Jun 20, 2023
1 parent 203113b commit e635a10
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ public boolean isValidAccessTokenInRefresh(String token) throws UserException {
} catch (ExpiredJwtException exception) {
log.error("Token Expired UserID = " + exception.getClaims().get("userIdx"));
return false;
} catch (JwtException exception) {
} catch (JwtException | IllegalArgumentException exception) {
log.error("accessToken Tampered.");
throw new UserException(INVALID_JWT);
} catch (NullPointerException exception) {
Expand Down

0 comments on commit e635a10

Please sign in to comment.