
com.samskivert.mustache.MustacheException 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
//
// 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