cn.dreampie.common.exception.ValidateException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jfinal-dreampie Show documentation
Show all versions of jfinal-dreampie Show documentation
jfinal shiro-freemarker plugins
package cn.dreampie.common.exception;
/**
* Created by wangrenhui on 14-5-6.
*/
public class ValidateException extends RuntimeException {
public ValidateException() {
super();
}
public ValidateException(String message) {
super(message);
}
public ValidateException(String message, Throwable cause) {
super(message, cause);
}
public ValidateException(Throwable cause) {
super(cause);
}
protected ValidateException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}