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

net.e6tech.elements.common.util.ErrorResponse Maven / Gradle / Ivy

There is a newer version: 2.7.9
Show newest version
package net.e6tech.elements.common.util;

/**
 * Created by futeh.
 */
public class ErrorResponse {

    private String responseCode;
    private String message;

    public String getResponseCode() {
        return responseCode;
    }

    public void setResponseCode(String errorCode) {
        this.responseCode = errorCode;
    }

    public String getMessage() {
        return message;
    }

    public void setMessage(String message) {
        this.message = message;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy