BookatlasTwo-Day MuleSoft → Salesforce Bootcamp
134 / 279 · Module 7 — Error Handling in Mule · filtered: code← prev⊞ allnext →

7.17Example Try scope

HTTP Listener
     ↓
Salesforce Account Query
     ↓
Try
 ┌───────────────────┐
 │ Loyalty API call  │
 │                   │
 │ error handler:    │
 │ On Error Continue │
 └───────────────────┘
     ↓
Build Response

If Loyalty fails:

Try scope handles it
↓
flow continues

Salesforce errors aren't swallowed because they're outside that Try.

That's cleaner than one giant flow-level handler with complicated condition logic.