All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.zhongweixian.excel.exception.ExcelImportEnum Maven / Gradle / Ivy

The newest version!
package com.zhongweixian.excel.exception;

/**
 * @author : caoliang
 * @date : 2017/11/14  下午2:33
 */
public enum ExcelImportEnum {

    PARAMETER_ERROR("参数错误"),
    IS_NOT_A_VALID_TEMPLATE("不是合法的Excel模板"),
    GET_VALUE_ERROR("Excel 值获取失败"),
    VERIFY_ERROR("值校验失败");

    private String msg;

    ExcelImportEnum(String msg) {
        this.msg = msg;
    }

    public String getMsg() {
        return msg;
    }

    public void setMsg(String msg) {
        this.msg = msg;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy