/*
* Hibernate Validator, declare and validate application constraints
*
* License: Apache License, Version 2.0
* See the license.txt file in the root directory or <http://www.apache.org/licenses/LICENSE-2.0>.
*/
package org.hibernate.validator.spi.scripting;
import javax.validation.ValidationException;
import org.hibernate.validator.Incubating;
Exception raised when an error occurs during the evaluation of a script.
Author: Marko Bekhta Since: 6.0.3
/**
* Exception raised when an error occurs during the evaluation of a script.
*
* @author Marko Bekhta
* @since 6.0.3
*/
@Incubating
public class ScriptEvaluationException extends ValidationException {
public ScriptEvaluationException() {
}
public ScriptEvaluationException(String message) {
super( message );
}
public ScriptEvaluationException(Throwable cause) {
super( cause );
}
public ScriptEvaluationException(String message, Throwable cause) {
super( message, cause );
}
}