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

play.exceptions.TemplateException Maven / Gradle / Ivy

There is a newer version: 2.6.2
Show newest version
package play.exceptions;

import play.templates.Template;

public class TemplateException extends PlayException {
    public TemplateException(Template template, Integer lineNumber, String message, Throwable cause) {
        super(String.format("%s in template %s:%s caused by %s", message, template.getName(), lineNumber, cause), cause);
    }

    public TemplateException(Template template, Integer lineNumber, String message) {
        super(String.format("%s in template %s:%s", message, template.getName(), lineNumber));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy