com.yanyun.auth.exception.TokenLegalException Maven / Gradle / Ivy
package com.yanyun.auth.exception;
/**
* token角色不合法异常
*/
public class TokenLegalException extends RuntimeException {
public TokenLegalException() {
super();
}
public TokenLegalException(String message) {
super(message);
}
}