Class FlowExitEventException

All Implemented Interfaces:
Serializable

public class FlowExitEventException extends FlowNodeException
This exception type is used when no edge could be found in a node for a certain exit event.
Since:
7.0
Author:
O. Kerpershoek, F. van der Meer
See Also:
  • Constructor Details

    • FlowExitEventException

      public FlowExitEventException(String flowName, String nodeId, ExitEvent result, ExitEvent[] validEvents)
      Constructs the exception with the required parameters.
      Parameters:
      flowName - The name of the flow the exception originated from.
      nodeId - The ID of the node for which no suitable edge could be found.
      result - The exit event for which no suitable edge could be found.
      validEvents - The available events for the edge.
  • Method Details

    • getNodeId

      public String getNodeId()
      This method returns the ID of the flow node for which no suitable edge could be found.
      Returns:
      the ID of the flow node for which no suitable edge could be found.
    • getExitEvent

      public ExitEvent getExitEvent()
      This method returns the exit event for which no suitable edge could be found.
      Returns:
      the exit event for which no suitable edge could be found.