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();