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

org.javalite.templator.TemplateException Maven / Gradle / Ivy

The newest version!
package org.javalite.templator;

/**
 * @author Igor Polevoy on 1/11/15.
 */
public class TemplateException extends RuntimeException {
    public TemplateException(Exception e) {
        super(e);
    }

    public TemplateException(String message) {
        super(message);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy