Class FlowActionException

All Implemented Interfaces:
Serializable

public class FlowActionException extends FlowNodeException
This exception is used to indicate the processing of an action node failed due to an exception.
Since:
5.0
Author:
O. Kerpershoek
See Also:
  • Constructor Details

    • FlowActionException

      public FlowActionException(String flowName, String actionId, Throwable error)
      Constructs the exception with the action id and error.
      Parameters:
      flowName - The name of the flow containing the action node.
      actionId - The ID of the action node that failed.
      error - The exception that was raised by the action node.
  • Method Details

    • getActionId

      public String getActionId()
      This methods returns the ID of the action node that failed.
      Returns:
      The ID of the action node that failed.