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

7.4On Error Continue

This is Mule's:

“I handled this problem. Treat this scope as successful.”

Example:

Salesforce lookup fails to find an optional marketing preference
       ↓
On Error Continue
       ↓
use default preference
       ↓
continue flow

Mule documentation defines On Error Continue as handling the error and making its owning Flow/Try scope behave as though it completed successfully.

Conceptually:

try {
    result = await optionalService();
}
catch {
    result = defaultValue;
}

// continue