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

com.pamirs.pradar.event.ErrorEvent Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package com.pamirs.pradar.event;

/**
 * @author xiaobin.zfb|[email protected]
 * @since 2020/10/26 9:26 下午
 */
public class ErrorEvent implements Event {
    private String errorCode;
    private String errorMsg;

    public ErrorEvent(String errorCode, String errorMsg) {
        this.errorCode = errorCode;
        this.errorMsg = errorMsg;
    }

    public String getErrorCode() {
        return errorCode;
    }

    public String getErrorMsg() {
        return errorMsg;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy