Errors
Everything on SkillVeris tagged Errors — collected across the glossary, study notes, blog, and cheat sheets.
5 resources across 2 libraries
Study Notes(3)
Error Handling in Flask
How to use abort(), @app.errorhandler, and logging to turn expected HTTP errors and unexpected exceptions into consistent, safe responses.
Custom Errors in JavaScript
Building your own Error subclasses by extending the built-in Error class to represent domain-specific failures.
Custom Errors and errors.Is/As in Go
Build custom error types in Go and use errors.Is and errors.As to inspect and match wrapped errors.
Cheat Sheets(2)
JavaScript Error Handling Cheat Sheet
Covers try/catch/finally, custom Error subclasses, handling errors in promises and async/await, and the ES2022 error cause chain.
Go Error Handling Cheat Sheet
Covers Go's explicit error return values, wrapping errors with %w, errors.Is and errors.As, custom error types, and panic/recover semantics.