Skip to content

Commit

Permalink
refresh 예외처리
Browse files Browse the repository at this point in the history
  • Loading branch information
hOch1 committed Oct 2, 2024
1 parent ac1e50e commit 886a89f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public Claims parseClaims(String accessToken) {
.getBody();
} catch (Exception e) {
log.error("Error parsing claims: ", e);
throw new RuntimeException(e);
throw new CustomException(ErrorCode.EXPIRED_TOKEN);
}
}

Expand Down

0 comments on commit 886a89f

Please sign in to comment.