BookatlasTwo-Day MuleSoft → Salesforce Bootcamp
17 / 18 · Module 20 — AI-Assisted Requirements, Development, and Testing · filtered: cheatsheet← prev⊞ allnext →

20.16Error-handling reviewer

For every error handler and retry:

Classify the possible failure as:
- transient
- permanent data/business
- authentication/configuration
- unknown/ambiguous outcome

Check:
- Is retry appropriate?
- Is operation idempotent?
- Can prior attempt already have committed?
- What happens after exhaustion?
- Is error normalized to public API?
- Could On Error Continue accidentally hide failure?

Very high-value automated review.