Class ValidationException

    • Constructor Summary

      Constructors 
      Constructor Description
      ValidationException​(java.lang.String message)
      Constructs a new WorkflowException with the specified detail message.
      ValidationException​(java.lang.String message, WorkflowNode node)
      Constructs a new WorkflowException with the specified detail message.
      ValidationException​(java.lang.String message, java.lang.Throwable cause)
      Constructs a new WorkflowException with the specified detail message and cause.
      ValidationException​(java.lang.Throwable cause)
      Constructs a new WorkflowException with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause ).
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      WorkflowNode getNode()
      Returns the WorkflowNode that is not valid or null if node could not be determined.
      • 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

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

      • ValidationException

        public ValidationException​(java.lang.String message)
        Constructs a new WorkflowException with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call to Throwable.initCause(java.lang.Throwable).
        Parameters:
        message - The detail message. The detail message is saved for later retrieval by the Throwable.getMessage() method.
      • ValidationException

        public ValidationException​(java.lang.String message,
                                   WorkflowNode node)
        Constructs a new WorkflowException with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call to Throwable.initCause(java.lang.Throwable).
        Parameters:
        message - The detail message. The detail message is saved for later retrieval by the Throwable.getMessage() method.
        node - the workflow node
      • ValidationException

        public ValidationException​(java.lang.Throwable cause)
        Constructs a new WorkflowException with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause ). This constructor is useful for WorkflowException that are wrappers for other Throwables.
        Parameters:
        cause - The cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
      • ValidationException

        public ValidationException​(java.lang.String message,
                                   java.lang.Throwable cause)
        Constructs a new WorkflowException with the specified detail message and cause.
        Parameters:
        message - The detail message (which is saved for later retrieval by the Throwable.getMessage() method).
        cause - The cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)