org.watertemplate.interpreter.parser.exception.IdCouldNotBeResolvedException 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.interpreter.parser.exception;
import org.watertemplate.exception.TemplateException;
import org.watertemplate.interpreter.parser.AbstractSyntaxTree;
public class IdCouldNotBeResolvedException extends TemplateException {
public IdCouldNotBeResolvedException(final String fullId) {
super("\"" + fullId + "\" could not be resolved.");
}
}