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