F5Intermediate

Error Handling Review

30 minEvery project

Format: Check whether error handling in the code is thorough.

Review Checklist:

  • Does every API call have a try/catch?
  • Are error messages user-friendly? (Not just "Error 500")
  • Are errors being logged? (console.error or a logging service)
  • Do network requests have timeout settings?
  • Is empty data handled? (null, undefined, empty arrays)

Self-Assessment Criteria

0/5

My Notes