If we have multiple Exception Handlers in an Action flow and an Exception is raised...
... the execution is always moved to the Global Exception Handler.
... the execution is moved to all Exception Handlers of the Action.
... a Switch statement is needed to select which Exception Handler will continue the execution.
... the execution is moved to the Exception Handler that is most specific to the Exception.
Submit