group.rober.dataform.exception.ValidatorException Maven / Gradle / Ivy
package group.rober.dataform.exception;
import group.rober.runtime.lang.RoberException;
/**
* Created by tisir [email protected] on 2017-05-22
*/
public class ValidatorException extends RoberException {
public ValidatorException() {
super();
}
public ValidatorException(String message) {
super(message);
}
public ValidatorException(String messageFormat, Object... objects) {
super(messageFormat, objects);
}
public ValidatorException(Throwable cause, String messageFormat, Object... objects) {
super(cause, messageFormat, objects);
}
public ValidatorException(Throwable cause, String message) {
super(cause, message);
}
public ValidatorException(Throwable cause) {
super(cause);
}
public ValidatorException(String message, Throwable cause) {
super(message, cause);
}
public ValidatorException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}