BookatlasTwo-Day MuleSoft → Salesforce Bootcamp
241 / 1048 · Module 7 — Error Handling in Mule← prev⊞ allnext →

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.