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