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

io.mateu.mdd.vaadin.pojos.Error Maven / Gradle / Ivy

The newest version!
package io.mateu.mdd.vaadin.pojos;

public class Error {

    private String message;
    private Throwable throwable;

    public Error(String message) {
        this.message = message;
    }

    public Error(Throwable throwable) {
        this.throwable = throwable;
    }


    public String getMessage() {
        return message;
    }

    public Throwable getThrowable() {
        return throwable;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy