Class FlowFunctionException

All Implemented Interfaces:
Serializable

public class FlowFunctionException extends FlowNodeException
This exception is used to indicate the processing of an action node failed due to an exception.
Since:
10.3
See Also:
  • Constructor Details

    • FlowFunctionException

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

    • getFunctionId

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