BookatlasTwo-Day MuleSoft → Salesforce Bootcamp
4 / 18 · Module 7 — Error Handling in Mule · filtered: cheatsheet← prev⊞ allnext →

7.3The `error` object

Inside an error handler you can inspect:

error.errorType
error.description
error.detailedDescription
error.cause

Conceptually:

{
    type: error.errorType as String,
    message: error.description
}

Don't memorize every property.

Know that:

error gives you structured information about the failure.