Unwrap returns the result of calling the Unwrap method on err, if err's type contains an Unwrap method returning error. Otherwise, Unwrap returns nil.
(err error)
| 34 | // type contains an Unwrap method returning error. |
| 35 | // Otherwise, Unwrap returns nil. |
| 36 | func Unwrap(err error) error { |
| 37 | return stderrors.Unwrap(err) |
| 38 | } |
searching dependent graphs…