Class ConstraintViolationException

  • All Implemented Interfaces:
    java.io.Serializable

    public class ConstraintViolationException
    extends ValidationException
    Reports the result of constraint violations.
    See Also:
    Serialized Form
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.Set<ConstraintViolation<?>> getConstraintViolations()
      Returns the set of constraint violations reported during a validation.
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • ConstraintViolationException

        public ConstraintViolationException​(java.lang.String message,
                                            java.util.Set<? extends ConstraintViolation<?>> constraintViolations)
        Creates a constraint violation report.
        Parameters:
        message - error message
        constraintViolations - a Set of ConstraintViolations or null
      • ConstraintViolationException

        public ConstraintViolationException​(java.util.Set<? extends ConstraintViolation<?>> constraintViolations)
        Creates a constraint violation report.
        Parameters:
        constraintViolations - a Set of ConstraintViolations or null
    • Method Detail

      • getConstraintViolations

        public java.util.Set<ConstraintViolation<?>> getConstraintViolations()
        Returns the set of constraint violations reported during a validation.
        Returns:
        the Set of ConstraintViolations or null