play.template2.exceptions.GTTemplateNotFound Maven / Gradle / Ivy
package play.template2.exceptions;
public class GTTemplateNotFound extends GTException {
public final String queryPath;
public GTTemplateNotFound(String queryPath) {
super("Cannot find template file " + queryPath);
this.queryPath = queryPath;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy