package com.xzx.gc.common.constant; public enum ExceptionEnum { 弹窗级异常("-1"), 跳到登录异常("-2"), 可忽略异常("-3"), 第二价格不允许小于第一价格("1"), 第一价格必须大于0("0"), ;//枚举结束 private String value; ExceptionEnum(String value){ this.value = value; } public String getValue(){ return this.value; } }