├── .github └── workflows │ └── go.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── _examples ├── basic │ ├── main.go │ └── nestedpackage │ │ └── nested.go └── helpers │ ├── built-in │ └── main.go │ └── custom │ └── main.go ├── benchmarks_test.go ├── chain.go ├── errors.go ├── errors_go1.20.go ├── errors_go1.20_test.go ├── errors_test.go ├── go.mod ├── go.sum ├── helpers.go └── helpers ├── awserrors └── awserrors.go ├── ioerrors └── ioerrors.go └── neterrors └── neterrors.go /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/errors/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/errors/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/errors/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/errors/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/errors/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/errors/HEAD/README.md -------------------------------------------------------------------------------- /_examples/basic/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/errors/HEAD/_examples/basic/main.go -------------------------------------------------------------------------------- /_examples/basic/nestedpackage/nested.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/errors/HEAD/_examples/basic/nestedpackage/nested.go -------------------------------------------------------------------------------- /_examples/helpers/built-in/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/errors/HEAD/_examples/helpers/built-in/main.go -------------------------------------------------------------------------------- /_examples/helpers/custom/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/errors/HEAD/_examples/helpers/custom/main.go -------------------------------------------------------------------------------- /benchmarks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/errors/HEAD/benchmarks_test.go -------------------------------------------------------------------------------- /chain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/errors/HEAD/chain.go -------------------------------------------------------------------------------- /errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/errors/HEAD/errors.go -------------------------------------------------------------------------------- /errors_go1.20.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/errors/HEAD/errors_go1.20.go -------------------------------------------------------------------------------- /errors_go1.20_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/errors/HEAD/errors_go1.20_test.go -------------------------------------------------------------------------------- /errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/errors/HEAD/errors_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/errors/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/errors/HEAD/go.sum -------------------------------------------------------------------------------- /helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/errors/HEAD/helpers.go -------------------------------------------------------------------------------- /helpers/awserrors/awserrors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/errors/HEAD/helpers/awserrors/awserrors.go -------------------------------------------------------------------------------- /helpers/ioerrors/ioerrors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/errors/HEAD/helpers/ioerrors/ioerrors.go -------------------------------------------------------------------------------- /helpers/neterrors/neterrors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/errors/HEAD/helpers/neterrors/neterrors.go --------------------------------------------------------------------------------