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

com.hyperwallet.clientsdk.model.HyperwalletError Maven / Gradle / Ivy

package com.hyperwallet.clientsdk.model;

import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement
public class HyperwalletError {

    private String code;
    private String fieldName;
    private String message;

    public HyperwalletError() {
    }

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

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

    public String getCode() {
        return code;
    }

    public String getFieldName() {
        return fieldName;
    }

    public String getMessage() {
        return message;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy