package
0.1.1
Repository: https://github.com/gnolang/gno.git
Documentation: pkg.go.dev

# Functions

No description provided by the author
New Error with formatted message.
New Error with specified data.
No description provided by the author

# Structs

FmtError is the data type for New() (e.g.

# Interfaces

Usage with arbitrary error data: ```go // Error construction type MyError struct{} var err1 error = NewWithData(MyError{}, "my message") ..