
com.sampullara.mustache.MustacheException Maven / Gradle / Ivy
The newest version!
package com.sampullara.mustache;
/**
* TODO: Edit this
*
* User: sam
* Date: May 3, 2010
* Time: 10:13:29 AM
*/
public class MustacheException extends Exception {
public MustacheException(Exception e) {
super(e);
}
public MustacheException(String msg) {
super(msg);
}
public MustacheException(String s, Exception e) {
super(s, e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy