7.20Nested error handling
You can have:
Flow error handler
↑
Try error handler
Example:
main flow
Try
↓
Billing API
↓
On Error Continue for HTTP:NOT_FOUND
Flow handler:
On Error Propagate for HTTP:CONNECTIVITY
The inner handler gets first chance for errors in that scope.
If it propagates, the containing flow can handle it.
Think exception stack.