package
0.0.0-20241212173216-745cb4b42230
Repository: https://github.com/ibiscum/go-programming-cookbook-second-edition.git
Documentation: pkg.go.dev

# Functions

BasicErrors demonstrates some ways to create errors.
SomeFunc returns an error.

# Variables

ErrorValue is a way to make a package level error to check against.

# Structs

CustomError is a struct that will implement the Error() interface.
TypedError is a way to make an error type you can do err.(type) == ErrorValue.