Cause aliases UnwrapAll() for compatibility with github.com/pkg/errors.
(err error)
| 73 | |
| 74 | // Cause aliases UnwrapAll() for compatibility with github.com/pkg/errors. |
| 75 | func Cause(err error) error { return errbase.UnwrapAll(err) } |
| 76 | |
| 77 | // Unwrap aliases UnwrapOnce() for compatibility with xerrors. |
| 78 | func Unwrap(err error) error { return errbase.UnwrapOnce(err) } |
nothing calls this directly
no test coverage detected
searching dependent graphs…