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

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

There is a newer version: 0.2.0
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 when an error occurs parsing or executing a Mustache template.
 */
public class MustacheException extends RuntimeException
{
    public static class Parse extends MustacheException {
        public Parse (String message) {
            super(message);
        }
    }

    public MustacheException (String message) {
        super(message);
    }

    public MustacheException (Throwable cause) {
        super(cause);
    }

    public MustacheException (String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy