├── .github └── workflows │ └── go.yml ├── .gitignore ├── LICENSE ├── README.md ├── README_CN.md ├── config.go ├── config_test.go ├── errors.go ├── errors_test.go ├── go.mod ├── go.sum ├── go113.go ├── go113_test.go ├── pack.go ├── pack_test.go ├── stack.go ├── stack_test.go ├── tool.go └── tool_test.go /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morrisxyang/errors/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morrisxyang/errors/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morrisxyang/errors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morrisxyang/errors/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morrisxyang/errors/HEAD/README_CN.md -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morrisxyang/errors/HEAD/config.go -------------------------------------------------------------------------------- /config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morrisxyang/errors/HEAD/config_test.go -------------------------------------------------------------------------------- /errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morrisxyang/errors/HEAD/errors.go -------------------------------------------------------------------------------- /errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morrisxyang/errors/HEAD/errors_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morrisxyang/errors/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morrisxyang/errors/HEAD/go.sum -------------------------------------------------------------------------------- /go113.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morrisxyang/errors/HEAD/go113.go -------------------------------------------------------------------------------- /go113_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morrisxyang/errors/HEAD/go113_test.go -------------------------------------------------------------------------------- /pack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morrisxyang/errors/HEAD/pack.go -------------------------------------------------------------------------------- /pack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morrisxyang/errors/HEAD/pack_test.go -------------------------------------------------------------------------------- /stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morrisxyang/errors/HEAD/stack.go -------------------------------------------------------------------------------- /stack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morrisxyang/errors/HEAD/stack_test.go -------------------------------------------------------------------------------- /tool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morrisxyang/errors/HEAD/tool.go -------------------------------------------------------------------------------- /tool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morrisxyang/errors/HEAD/tool_test.go --------------------------------------------------------------------------------