All Downloads are FREE. Search and download functionalities are using the official Maven repository.

group.rober.dataform.exception.ValidatorException Maven / Gradle / Ivy

There is a newer version: 3.2.2
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy