jwt的解析

This commit is contained in:
none
2023-02-16 17:52:45 +08:00
parent 53b3a8645f
commit 24a9db11c1
13 changed files with 186 additions and 82 deletions

View File

@@ -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);
}
}