Unwrap aliases UnwrapOnce() for compatibility with xerrors.
(err error)
| 76 | |
| 77 | // Unwrap aliases UnwrapOnce() for compatibility with xerrors. |
| 78 | func Unwrap(err error) error { return errbase.UnwrapOnce(err) } |
| 79 | |
| 80 | // Wrapper is the type of an error wrapper. |
| 81 | type Wrapper interface { |
searching dependent graphs…