Class WorkflowRuntimeException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.yworkflow.common.error.WorkflowRuntimeException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
MissingArgumentException, UnresolvableExtensionException, WorkflowInstanceStoreException

public class WorkflowRuntimeException extends RuntimeException
Runtime exception thrown when internal workflow engine issues occur that are not related to business logic or user input validation. This exception indicates system-level problems that prevent the workflow engine from functioning properly.
Since:
1.0
See Also:
  • Constructor Details

    • WorkflowRuntimeException

      public WorkflowRuntimeException()
      Constructs a new WorkflowRuntimeException with no detail message.
    • WorkflowRuntimeException

      public WorkflowRuntimeException(String message)
      Constructs a new WorkflowRuntimeException with the specified detail message.
      Parameters:
      message - the detail message explaining the internal error
    • WorkflowRuntimeException

      public WorkflowRuntimeException(Throwable cause)
      Constructs a new WorkflowRuntimeException with the specified cause.
      Parameters:
      cause - the underlying cause of this runtime exception
    • WorkflowRuntimeException

      public WorkflowRuntimeException(String message, Throwable cause)
      Constructs a new WorkflowRuntimeException with the specified detail message and cause.
      Parameters:
      message - the detail message explaining the internal error
      cause - the underlying cause of this runtime exception