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: 0.2.0
Show newest version
//
// $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