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

org.jtwig.exceptions.JtwigException Maven / Gradle / Ivy

package org.jtwig.exceptions;

public class JtwigException extends RuntimeException {
    public JtwigException(String message) {
        super(message);
    }

    public JtwigException(Throwable cause) {
        super(cause);
    }

    public JtwigException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy