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.