com.samskivert.mustache.MustacheParseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmustache Show documentation
Show all versions of jmustache Show documentation
A Java implementation of the Mustache templating language.
//
// JMustache - A Java implementation of the Mustache templating language
// http://github.com/samskivert/jmustache/blob/master/LICENSE
package com.samskivert.mustache;
/**
* An exception thrown if we encounter an error while parsing a template.
*/
public class MustacheParseException extends MustacheException
{
public MustacheParseException (String message) {
super(message);
}
public MustacheParseException (String message, int lineNo) {
super(message + " @ line " + lineNo);
}
}