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

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

There is a newer version: 0.0.2
Show newest version
package br.com.cefis.resource;

public class Error {

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

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

    public String getCode() {
        return code;
    }

    void setDescription(String description) {
        this.description = description;
    }

    public String getDescription() {
        return description;
    }

    void setPath(String path) {
        this.path = path;
    }

    public String getPath() {
        return path;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy