diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-01-23 06:15:18 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-23 06:15:18 -0800 |
commit | f037f24b67c4fd95c9b85ecf40a7ba6d9c7dd7f6 (patch) | |
tree | 96665286b569c8cf79f43ef9adad7f1502eefbed /vendor/github.com/pkg/errors/errors.go | |
parent | 8098cbbee192e644de505e62c4aa0341f4acb4a5 (diff) | |
parent | 587a25fd8a9f903ffc45d6ca7442da3966f7443c (diff) | |
download | podman-f037f24b67c4fd95c9b85ecf40a7ba6d9c7dd7f6.tar.gz podman-f037f24b67c4fd95c9b85ecf40a7ba6d9c7dd7f6.tar.bz2 podman-f037f24b67c4fd95c9b85ecf40a7ba6d9c7dd7f6.zip |
Merge pull request #4947 from containers/dependabot/go_modules/github.com/containers/storage-1.15.7
build(deps): bump github.com/containers/storage from 1.15.5 to 1.15.7
Diffstat (limited to 'vendor/github.com/pkg/errors/errors.go')
-rw-r--r-- | vendor/github.com/pkg/errors/errors.go | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/vendor/github.com/pkg/errors/errors.go b/vendor/github.com/pkg/errors/errors.go index a9840ecee..161aea258 100644 --- a/vendor/github.com/pkg/errors/errors.go +++ b/vendor/github.com/pkg/errors/errors.go @@ -260,3 +260,29 @@ func (w *withMessage) Format(s fmt.State, verb rune) { io.WriteString(s, w.Error()) } } + +// Cause returns the underlying cause of the error, if possible. +// An error value has a cause if it implements the following +// interface: +// +// type causer interface { +// Cause() error +// } +// +// If the error does not implement Cause, the original error will +// be returned. If the error is nil, nil will be returned without further +// investigation. +func Cause(err error) error { + type causer interface { + Cause() error + } + + for err != nil { + cause, ok := err.(causer) + if !ok { + break + } + err = cause.Cause() + } + return err +} |