javax.validation.UnexpectedTypeException Maven / Gradle / Ivy
/*
* Bean Validation API
*
* License: Apache License, Version 2.0
* See the license.txt file in the root directory or .
*/
package javax.validation;
/**
* Exception raised in the case that the constraint validator resolution
* cannot determine a suitable validator for a given type.
*
* @author Hardy Ferentschik
*/
public class UnexpectedTypeException extends ConstraintDeclarationException {
public UnexpectedTypeException(String message) {
super( message );
}
public UnexpectedTypeException() {
super();
}
public UnexpectedTypeException(String message, Throwable cause) {
super( message, cause );
}
public UnexpectedTypeException(Throwable cause) {
super( cause );
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy