Ai
1 Star 1 Fork 2

多喝水能美颜/bi-backend

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
ErrorCode.java 846 Bytes
一键复制 编辑 原始数据 按行查看 历史
多喝水能美颜 提交于 2023-08-26 08:28 +08:00 . add 添加 Redis 服务
package com.yupi.bi.common;
/**
* 自定义错误码
*
* @author yupi
*/
public enum ErrorCode {
SUCCESS(0, "ok"),
PARAMS_ERROR(40000, "请求参数错误"),
NOT_LOGIN_ERROR(40100, "未登录"),
NO_AUTH_ERROR(40101, "无权限"),
NOT_FOUND_ERROR(40400, "请求数据不存在"),
TO_MANY_REQUEST(42900, "请求过于频繁"),
FORBIDDEN_ERROR(40300, "禁止访问"),
SYSTEM_ERROR(50000, "系统内部异常"),
OPERATION_ERROR(50001, "操作失败");
/**
* 状态码
*/
private final int code;
/**
* 信息
*/
private final String message;
ErrorCode(int code, String message) {
this.code = code;
this.message = message;
}
public int getCode() {
return code;
}
public String getMessage() {
return message;
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/dwbf/bi-backend.git
git@gitee.com:dwbf/bi-backend.git
dwbf
bi-backend
bi-backend
master

搜索帮助