Skip to content

Commit

Permalink
Update JwtProvider.java
Browse files Browse the repository at this point in the history
  • Loading branch information
drunkenhw authored Aug 14, 2023
1 parent 0e96a17 commit b0e4682
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public Long extract(String token) {
throw new AuthException(EXPIRED_TOKEN);
} catch (UnsupportedJwtException e) {
throw new AuthException(UNSUPPORTED_TOKEN);
} catch (IllegalArgumentException e) {
} catch (Exception e) {
throw new AuthException(INVALID_TOKEN);
}
}
Expand Down

0 comments on commit b0e4682

Please sign in to comment.