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

cn.t.common.service.ErrorInfo Maven / Gradle / Ivy

package cn.t.common.service;

/**
 * 错误信息
 * @author 研发部-杨建
 * @version V1.0
 * @since 2021-03-17 10:10
 **/
public class ErrorInfo {
    private final String code;
    private final String msg;

    public ErrorInfo(String code, String msg) {
        this.code = code;
        this.msg = msg;
    }

    public String getCode() {
        return code;
    }

    public String getMsg() {
        return msg;
    }

    @Override
    public String toString() {
        return "ErrorInfo{" +
                "code='" + code + '\'' +
                ", msg='" + msg + '\'' +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy