All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.samskivert.mustache.MustacheParseException Maven / Gradle / Ivy

There is a newer version: 1.16
Show newest version
//
// 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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy