
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 catalog-test Show documentation
Show all versions of catalog-test Show documentation
Test Plugin for CatalogPluginApin
//
// $Id$
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);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy