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

com.haulmont.yarg.exception.ValidationException Maven / Gradle / Ivy

/**
 *
 * @author degtyarjov
 * @version $Id$
 */
package com.haulmont.yarg.exception;


/**
 * Thrown when data loader met invalid input parameters
 */
public class ValidationException extends ReportingException {
    public ValidationException() {
    }

    public ValidationException(String message) {
        super(message);
    }

    public ValidationException(String message, Throwable cause) {
        super(message, cause);
    }

    public ValidationException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy