Error Handling Fundamentals Review "Errors are not failures — they're information. Handle them like the valuable data they are." When to Apply Activate this skill when reviewing: - try/catch blocks - Promise chains (.then/.catch) - API error responses - Form validation - Network request handling - User-facing error messages --- Review Checklist Error Catching - [ ] No empty catches : Is every catch block doing something meaningful? - [ ] Proper scope : Are errors caught at the right level? - [ ] Context added : Do errors include helpful debugging info? - [ ] Finally used : Are cleanup operati…