Error Handling in Flows
Error in flows can be handled with three features.
Retries
Steps within a flow can be re-tried in case of error for a given number of attempts and frequency.
info
More details on our pages dedicated to Retries.
Error Handler
The Error Handler is a special flow step that is executed when an error occurs in a flow.
If defined, the error handler will take as input, the result of the step that errored (which has its error in the 'error field').
info
More details on our pages dedicated to Error Handlers.
Early Stop / Break
If defined, at the end of the step, the predicate expression will be evaluated to decide if the flow should stop early.
info
More details on our pages dedicated to Early Stop / Break.