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

io.mangoo.models.Source Maven / Gradle / Ivy

package io.mangoo.models;

/**
 * Base class for holding exception information
 *
 * @author svenkubiak
 *
 */
public class Source {
    private final String content;
    private final boolean cause;
    private final int line;

    public Source(boolean cause, int line, String content) {
        this.cause = cause;
        this.line = line;
        this.content = content;
    }

    public boolean isCause() {
        return cause;
    }

    public int getLine() {
        return line;
    }

    public String getContent() {
        return content;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy