Class ValidationException

    • Constructor Summary

      Constructors 
      Constructor Description
      ValidationException​(java.lang.String message)
      Constructs the ValidationException with the error message.
      ValidationException​(java.lang.String message, java.lang.Throwable e)
      Constructs the ValidationException with the error message and the throwable object.
      ValidationException​(java.lang.Throwable e)
      Constructs the ValidationException with the throwable object.
    • Method Summary

      • 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

      • ValidationException

        public ValidationException​(java.lang.String message)
        Constructs the ValidationException with the error message.
        Parameters:
        message - the error message.
      • ValidationException

        public ValidationException​(java.lang.Throwable e)
        Constructs the ValidationException with the throwable object.
        Parameters:
        e - The throwable.
      • ValidationException

        public ValidationException​(java.lang.String message,
                                   java.lang.Throwable e)
        Constructs the ValidationException with the error message and the throwable object.
        Parameters:
        message - the error message.
        e - The throwable.