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

7.16The Try scope

Sometimes you don't want an error handler covering the entire flow.

You want:

only THIS operation

to have special behavior.

Use:

Try

Mule's Try scope allows a subset of processors to have their own error handler.

Conceptually:

try {
    optionalBillingLookup();
}
catch (...) {
    ...
}

continueMainFlow();