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

fm.pattern.tokamak.sdk.commons.ErrorRepresentation Maven / Gradle / Ivy

The newest version!
package fm.pattern.tokamak.sdk.commons;

public class ErrorRepresentation extends Representation {

    private String code;
    private String message;

    public ErrorRepresentation() {

    }

    public ErrorRepresentation(String code, String message) {
        this.code = code;
        this.message = message;
    }

    public String getCode() {
        return code;
    }

    public String getMessage() {
        return message;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy