com.github.mustachejava.util.GuardException 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.util;
/**
* If the wrapper has a different calling signature, tell the
* caller to refind it.
*/
public class GuardException extends RuntimeException {
public GuardException() {
}
public GuardException(String message) {
super(message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy