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

# Functions

StackTrace will print all the stack for the error.
Unwrap will unwrap an error and do type assertion to it.
Wrap shows what happens when we wrap an error.
WrappedError demonstrates error wrapping and annotating an error.

# Structs

ErrorTyped is a error we can check against.