mirror of
https://github.com/PlayEdu/PlayEdu
synced 2025-12-26 12:49:28 +08:00
jwt的解析
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
package xyz.playedu.api.exception;
|
||||
|
||||
public class JwtLogoutException extends Exception {
|
||||
public JwtLogoutException() {
|
||||
super();
|
||||
}
|
||||
|
||||
public JwtLogoutException(String message) {
|
||||
super(message);
|
||||
}
|
||||
|
||||
public JwtLogoutException(String message, Throwable cause) {
|
||||
super(message, cause);
|
||||
}
|
||||
|
||||
public JwtLogoutException(Throwable cause) {
|
||||
super(cause);
|
||||
}
|
||||
|
||||
protected JwtLogoutException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
|
||||
super(message, cause, enableSuppression, writableStackTrace);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user