├── .chglog ├── CHANGELOG.tpl.md └── config.yml ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── build.yml │ ├── codeql.yml │ ├── coverage.yml │ ├── lint.yml │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── benchmark ├── bench_test.go ├── go.mod └── go.sum ├── eris.go ├── eris_test.go ├── examples ├── external │ └── example.go ├── go.mod ├── go.sum ├── logging │ └── example.go └── sentry │ └── example.go ├── examples_test.go ├── format.go ├── format_test.go ├── go.mod ├── stack.go └── stack_test.go /.chglog/CHANGELOG.tpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rotisserie/eris/HEAD/.chglog/CHANGELOG.tpl.md -------------------------------------------------------------------------------- /.chglog/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rotisserie/eris/HEAD/.chglog/config.yml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @morningvera 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rotisserie/eris/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rotisserie/eris/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rotisserie/eris/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rotisserie/eris/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rotisserie/eris/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rotisserie/eris/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rotisserie/eris/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rotisserie/eris/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rotisserie/eris/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rotisserie/eris/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rotisserie/eris/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rotisserie/eris/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rotisserie/eris/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rotisserie/eris/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rotisserie/eris/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rotisserie/eris/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rotisserie/eris/HEAD/benchmark/bench_test.go -------------------------------------------------------------------------------- /benchmark/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rotisserie/eris/HEAD/benchmark/go.mod -------------------------------------------------------------------------------- /benchmark/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rotisserie/eris/HEAD/benchmark/go.sum -------------------------------------------------------------------------------- /eris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rotisserie/eris/HEAD/eris.go -------------------------------------------------------------------------------- /eris_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rotisserie/eris/HEAD/eris_test.go -------------------------------------------------------------------------------- /examples/external/example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rotisserie/eris/HEAD/examples/external/example.go -------------------------------------------------------------------------------- /examples/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rotisserie/eris/HEAD/examples/go.mod -------------------------------------------------------------------------------- /examples/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rotisserie/eris/HEAD/examples/go.sum -------------------------------------------------------------------------------- /examples/logging/example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rotisserie/eris/HEAD/examples/logging/example.go -------------------------------------------------------------------------------- /examples/sentry/example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rotisserie/eris/HEAD/examples/sentry/example.go -------------------------------------------------------------------------------- /examples_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rotisserie/eris/HEAD/examples_test.go -------------------------------------------------------------------------------- /format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rotisserie/eris/HEAD/format.go -------------------------------------------------------------------------------- /format_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rotisserie/eris/HEAD/format_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/rotisserie/eris 2 | 3 | go 1.18 4 | -------------------------------------------------------------------------------- /stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rotisserie/eris/HEAD/stack.go -------------------------------------------------------------------------------- /stack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rotisserie/eris/HEAD/stack_test.go --------------------------------------------------------------------------------