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

io.hcxprotocol.dto.ResponseError Maven / Gradle / Ivy

Go to download

The SDK for HCX Participant System to help in integrating with HCX Gateway easily.

There is a newer version: 1.0.8
Show newest version
package io.hcxprotocol.dto;

/**
 * The ResponseError class which wrap the error details and helps in creating an instance of it.
 */
public class ResponseError {

    private String code;
    private String message;
    private String trace;

    public ResponseError() {}

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

    public String getCode() {
        return code;
    }

    public void setCode(String code) {
        this.code = code;
    }

    public String getMessage() {
        return message;
    }

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

    public String getTrace() {
        return trace;
    }

    public void setTrace(String trace) {
        this.trace = trace;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy