Interface IUnhandledExceptionEventData

  • All Superinterfaces:
    IFormRecordProvidingEvent, IProjectProvidingEvent, IWorkflowEventData, Serializable

    public interface IUnhandledExceptionEventData
    extends IFormRecordProvidingEvent
    Represents the event data of an error event that is triggered when an unhandled exception occurred during workflow execution. There are two ways errors can be treated: (1) By putting actions inside a try-catch block. This catches error locally when an action inside the try-block throws. (2) It is also possible to catch errors globally via an error trigger.

    This interface is the event data for that error trigger.

    Since:
    7.0.0
    Author:
    XIMA MEDIA GmbH
    • Method Detail

      • getOriginalEvent

        IWorkflowEventData getOriginalEvent()
        Returns:
        The original event that triggered the workflow to be executed.
      • getUnhandledException

        NodeThrewException getUnhandledException()
        Returns:
        The unhandled exception that occurred during workflow execution.