com.github.mustachejava.MustacheException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of compiler Show documentation
Show all versions of compiler Show documentation
Implementation of mustache.js for Java
package com.github.mustachejava;
/**
* Generally there is nothing you can do if it fails.
*/
public class MustacheException extends RuntimeException {
public MustacheException() {
super();
}
public MustacheException(String s) {
super(s);
}
public MustacheException(String s, Throwable throwable) {
super(s, throwable);
}
public MustacheException(Throwable throwable) {
super(throwable);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy