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

br.com.moip.resource.Error Maven / Gradle / Ivy

There is a newer version: 4.7.6
Show newest version
package br.com.moip.resource;

public class Error {

    private String code;
    private String path;
    private String description;

    public String getCode() {
        return code;
    }

    public String getDescription() {
        return description;
    }

    public String getPath() {
        return path;
    }

    @Override
    public String toString() {
        return "Errors{" +
                "code='" + getCode() + "'" +
                ", path='" + getPath() + '\'' +
                ", description='" + getDescription() + '\'' +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy