Error Handling in Go
Dec 28, 2020
Raising errors and error handling are common traits in well-written programs. They make your program more robust and resilient to failure.
This article is part of the Learning Go series
In this series of articles, we’ll look at the different concepts and techniques for raising errors and error handling.
- Go Error Handling (Part 1) — Errors as Values
- Go Error Handling (Part 2) — The
error
Type - Go Error Handling (Part 3) — The
errors
Package - Go Error Handling (Part 4) — Error Handling Strategies (Coming Soon)