package cn.stylefeng.roses.kernel.system.modular.home.enums;
|
|
import cn.stylefeng.roses.kernel.rule.constants.RuleConstants;
|
import cn.stylefeng.roses.kernel.rule.exception.AbstractExceptionEnum;
|
import lombok.Getter;
|
|
/**
|
* 常用功能列表异常相关枚举
|
*
|
* @author fengshuonan
|
* @date 2022/02/10 21:17
|
*/
|
@Getter
|
public enum SysStatisticsUrlExceptionEnum implements AbstractExceptionEnum {
|
|
/**
|
* 查询结果不存在
|
*/
|
SYS_STATISTICS_URL_NOT_EXISTED(RuleConstants.USER_OPERATION_ERROR_TYPE_CODE + "10001", "查询结果不存在");
|
|
/**
|
* 错误编码
|
*/
|
private final String errorCode;
|
|
/**
|
* 提示用户信息
|
*/
|
private final String userTip;
|
|
SysStatisticsUrlExceptionEnum(String errorCode, String userTip) {
|
this.errorCode = errorCode;
|
this.userTip = userTip;
|
}
|
|
}
|