├── LICENSE ├── PATENTS ├── README ├── adaptor.go ├── codereview.cfg ├── doc.go ├── errors.go ├── errors_test.go ├── example_As_test.go ├── example_FormatError_test.go ├── example_test.go ├── fmt.go ├── fmt_test.go ├── fmt_unexported_test.go ├── format.go ├── frame.go ├── go.mod ├── internal └── internal.go ├── stack_test.go ├── wrap.go └── wrap_test.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/xerrors/HEAD/LICENSE -------------------------------------------------------------------------------- /PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/xerrors/HEAD/PATENTS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/xerrors/HEAD/README -------------------------------------------------------------------------------- /adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/xerrors/HEAD/adaptor.go -------------------------------------------------------------------------------- /codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/xerrors/HEAD/doc.go -------------------------------------------------------------------------------- /errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/xerrors/HEAD/errors.go -------------------------------------------------------------------------------- /errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/xerrors/HEAD/errors_test.go -------------------------------------------------------------------------------- /example_As_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/xerrors/HEAD/example_As_test.go -------------------------------------------------------------------------------- /example_FormatError_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/xerrors/HEAD/example_FormatError_test.go -------------------------------------------------------------------------------- /example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/xerrors/HEAD/example_test.go -------------------------------------------------------------------------------- /fmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/xerrors/HEAD/fmt.go -------------------------------------------------------------------------------- /fmt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/xerrors/HEAD/fmt_test.go -------------------------------------------------------------------------------- /fmt_unexported_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/xerrors/HEAD/fmt_unexported_test.go -------------------------------------------------------------------------------- /format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/xerrors/HEAD/format.go -------------------------------------------------------------------------------- /frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/xerrors/HEAD/frame.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module golang.org/x/xerrors 2 | 3 | go 1.18 4 | -------------------------------------------------------------------------------- /internal/internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/xerrors/HEAD/internal/internal.go -------------------------------------------------------------------------------- /stack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/xerrors/HEAD/stack_test.go -------------------------------------------------------------------------------- /wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/xerrors/HEAD/wrap.go -------------------------------------------------------------------------------- /wrap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/xerrors/HEAD/wrap_test.go --------------------------------------------------------------------------------