This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.sd.utils; | |
@SuppressWarnings("serial") | |
public class JwtException extends RuntimeException { | |
public static JwtException invalidAccessToken(String message) { | |
return new JwtException(message, null); | |
} | |
public static JwtException invalidClaims(String message, Throwable cause) { |