You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
389 B
Java

package com.supervision.livedigitalavatarmanage.exception;
public class UnauthorizedException extends RuntimeException {
public UnauthorizedException() {
super("用户未登录");
}
public UnauthorizedException(String message) {
super(message);
}
public UnauthorizedException(String message, Throwable cause) {
super(message, cause);
}
}