org.watertemplate.exception.RenderException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of watertemplate-engine Show documentation
Show all versions of watertemplate-engine Show documentation
Lighweight, fast Java 8 template engine.
package org.watertemplate.exception;
import org.watertemplate.Template;
import java.util.Locale;
public class RenderException extends TemplateException {
public RenderException(Template t, Locale l, Throwable c) {
super("Error rendering " + t.getClass() + " with locale " + l, c);
}
}