package com.ningdatech.kqapi.common.exception; import com.ningdatech.kqapi.common.exception.code.ExceptionCode; /** * 401 未认证 未登录 * * @author WendyYang * @version 1.0 */ public class UnauthorizedException extends BaseUncheckedException { private static final long serialVersionUID = 1L; public UnauthorizedException(int code, String message) { super(code, message); } public UnauthorizedException(int code, String message, Throwable cause) { super(code, message, cause); } public static UnauthorizedException wrap(String msg) { return new UnauthorizedException(ExceptionCode.UNAUTHORIZED.getCode(), msg); } @Override public String toString() { return "UnauthorizedException [message=" + getMessage() + ", code=" + getCode() + "]"; } }