Class InitializationException

All Implemented Interfaces:
Serializable

public class InitializationException extends WorkflowException
Exception thrown when workflow instance initialization fails. InitializationException is used to indicate that a workflow instance could not be properly initialized due to configuration errors, missing dependencies, or other initialization problems.

This exception is typically thrown during the creation or startup of workflow instances when required resources are not available, configuration is invalid, or dependencies cannot be resolved.

InitializationException extends WorkflowException, making it a checked exception that must be handled by calling code.

Since:
1.0
See Also:
  • Constructor Details

    • InitializationException

      public InitializationException()
      Creates a new InitializationException with no detail message.
    • InitializationException

      public InitializationException(String message)
      Creates a new InitializationException with the specified detail message.
      Parameters:
      message - the detail message
    • InitializationException

      public InitializationException(String message, Throwable cause)
      Creates a new InitializationException with the specified detail message and cause.
      Parameters:
      message - the detail message
      cause - the cause of the exception
    • InitializationException

      public InitializationException(Throwable cause)
      Creates a new InitializationException with the specified cause.
      Parameters:
      cause - the cause of the exception