├── .github ├── FUNDING.yml └── workflows │ └── go.yml ├── .gitignore ├── LICENSE ├── README.md ├── errors.go ├── errors_benchmark_test.go ├── errors_test.go ├── go.mod ├── go.sum ├── grpc.go ├── grpc_test.go ├── helper.go ├── helper_test.go ├── http.go ├── http_test.go ├── mirror.go └── mirror_test.go /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naughtygopher/errors/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naughtygopher/errors/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naughtygopher/errors/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naughtygopher/errors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naughtygopher/errors/HEAD/README.md -------------------------------------------------------------------------------- /errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naughtygopher/errors/HEAD/errors.go -------------------------------------------------------------------------------- /errors_benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naughtygopher/errors/HEAD/errors_benchmark_test.go -------------------------------------------------------------------------------- /errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naughtygopher/errors/HEAD/errors_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naughtygopher/errors/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naughtygopher/errors/HEAD/go.sum -------------------------------------------------------------------------------- /grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naughtygopher/errors/HEAD/grpc.go -------------------------------------------------------------------------------- /grpc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naughtygopher/errors/HEAD/grpc_test.go -------------------------------------------------------------------------------- /helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naughtygopher/errors/HEAD/helper.go -------------------------------------------------------------------------------- /helper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naughtygopher/errors/HEAD/helper_test.go -------------------------------------------------------------------------------- /http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naughtygopher/errors/HEAD/http.go -------------------------------------------------------------------------------- /http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naughtygopher/errors/HEAD/http_test.go -------------------------------------------------------------------------------- /mirror.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naughtygopher/errors/HEAD/mirror.go -------------------------------------------------------------------------------- /mirror_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naughtygopher/errors/HEAD/mirror_test.go --------------------------------------------------------------------------------