• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.gitignoreH A D29-Sep-2016266

.travis.ymlH A D29-Sep-2016133

LICENSEH A D29-Sep-20161.3 KiB

README.mdH A D29-Sep-20162.2 KiB

appveyor.ymlH A D29-Sep-2016639

bench_test.goH A D29-Sep-2016906

errors.goH A D29-Sep-20166.7 KiB

errors_test.goH A D29-Sep-20164.7 KiB

example_test.goH A D29-Sep-20165.3 KiB

format_test.goH A D29-Sep-201612.5 KiB

stack.goH A D29-Sep-20164.3 KiB

stack_test.goH A D29-Sep-20165.4 KiB

README.md

1# errors [![Travis-CI](https://travis-ci.org/pkg/errors.svg)](https://travis-ci.org/pkg/errors) [![AppVeyor](https://ci.appveyor.com/api/projects/status/b98mptawhudj53ep/branch/master?svg=true)](https://ci.appveyor.com/project/davecheney/errors/branch/master) [![GoDoc](https://godoc.org/github.com/pkg/errors?status.svg)](http://godoc.org/github.com/pkg/errors) [![Report card](https://goreportcard.com/badge/github.com/pkg/errors)](https://goreportcard.com/report/github.com/pkg/errors)
2
3Package errors provides simple error handling primitives.
4
5`go get github.com/pkg/errors`
6
7The traditional error handling idiom in Go is roughly akin to
8```go
9if err != nil {
10        return err
11}
12```
13which applied recursively up the call stack results in error reports without context or debugging information. The errors package allows programmers to add context to the failure path in their code in a way that does not destroy the original value of the error.
14
15## Adding context to an error
16
17The errors.Wrap function returns a new error that adds context to the original error. For example
18```go
19_, err := ioutil.ReadAll(r)
20if err != nil {
21        return errors.Wrap(err, "read failed")
22}
23```
24## Retrieving the cause of an error
25
26Using `errors.Wrap` constructs a stack of errors, adding context to the preceding error. Depending on the nature of the error it may be necessary to reverse the operation of errors.Wrap to retrieve the original error for inspection. Any error value which implements this interface can be inspected by `errors.Cause`.
27```go
28type causer interface {
29        Cause() error
30}
31```
32`errors.Cause` will recursively retrieve the topmost error which does not implement `causer`, which is assumed to be the original cause. For example:
33```go
34switch err := errors.Cause(err).(type) {
35case *MyError:
36        // handle specifically
37default:
38        // unknown error
39}
40```
41
42[Read the package documentation for more information](https://godoc.org/github.com/pkg/errors).
43
44## Contributing
45
46We welcome pull requests, bug fixes and issue reports. With that said, the bar for adding new symbols to this package is intentionally set high.
47
48Before proposing a change, please discuss your change by raising an issue.
49
50## Licence
51
52BSD-2-Clause
53