Class WorkflowInvalidException

  • All Implemented Interfaces:
    java.io.Serializable

    public class WorkflowInvalidException
    extends WorkflowException
    An exception thrown if a workflow is invalid.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      WorkflowInvalidException()
      Constructs a new WorkflowInvalidException with no information.
      WorkflowInvalidException​(java.lang.String message)
      Constructs a new WorkflowInvalidException with the given message.
      WorkflowInvalidException​(java.lang.String message, java.lang.Throwable cause)
      Constructs a new WorkflowInvalidException with the given message and cause.
      WorkflowInvalidException​(java.lang.Throwable cause)
      Constructs a new WorkflowInvalidException with the given cause.
    • 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

      • WorkflowInvalidException

        public WorkflowInvalidException()
        Constructs a new WorkflowInvalidException with no information.
      • WorkflowInvalidException

        public WorkflowInvalidException​(java.lang.String message,
                                        java.lang.Throwable cause)
        Constructs a new WorkflowInvalidException with the given message and cause.
        Parameters:
        message - The message explaining the error.
        cause - The cause of this message.
      • WorkflowInvalidException

        public WorkflowInvalidException​(java.lang.String message)
        Constructs a new WorkflowInvalidException with the given message.
        Parameters:
        message - The message explaining the error.
      • WorkflowInvalidException

        public WorkflowInvalidException​(java.lang.Throwable cause)
        Constructs a new WorkflowInvalidException with the given cause.
        Parameters:
        cause - The cause of this error.