jakarta.validation.ConstraintDeclarationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of driver-cql-shaded Show documentation
Show all versions of driver-cql-shaded Show documentation
A Shaded CQL ActivityType driver for http://nosqlbench.io/
/*
* Jakarta Bean Validation API
*
* License: Apache License, Version 2.0
* See the license.txt file in the root directory or .
*/
package jakarta.validation;
/**
* Exception raised if a constraint declaration is not legal.
*
* @author Emmanuel Bernard
*/
public class ConstraintDeclarationException extends ValidationException {
public ConstraintDeclarationException(String message) {
super( message );
}
public ConstraintDeclarationException() {
super();
}
public ConstraintDeclarationException(String message, Throwable cause) {
super( message, cause );
}
public ConstraintDeclarationException(Throwable cause) {
super( cause );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy