You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
630 B
28 lines
630 B
package com.mashibing.enums;
|
|
|
|
import lombok.Getter;
|
|
|
|
/**
|
|
* @author kezhen
|
|
* @date 2022/12/29
|
|
* @description
|
|
*/
|
|
@Getter
|
|
public enum ExceptionEnums {
|
|
ERROR_APIKEY(-1, "非法的apikey"),
|
|
IP_NOT_WHITE(-2, "请求的ip不在白名单内"),
|
|
ERROR_SIGN(-3, "无可用签名"),
|
|
ERROR_TEMPLATE(-4, "无可用签名"),
|
|
ERROR_MOBILE(-5, "手机号格式不正确"),
|
|
BALANCE_NOT_ENOUGH(-6, "余额不足"),
|
|
PARAMETER_ERROR(-10,"参数不合法"),
|
|
;
|
|
private Integer code;
|
|
private String msg;
|
|
|
|
ExceptionEnums(Integer code, String msg) {
|
|
this.code = code;
|
|
this.msg = msg;
|
|
}
|
|
}
|