UnwrapAll accesses the root cause object of the error. If the error has no cause (leaf error), it is returned directly.
(err error)
| 32 | // UnwrapAll accesses the root cause object of the error. |
| 33 | // If the error has no cause (leaf error), it is returned directly. |
| 34 | func UnwrapAll(err error) error { return errbase.UnwrapAll(err) } |
| 35 | |
| 36 | // EncodedError is the type of an encoded (and protobuf-encodable) error. |
| 37 | type EncodedError = errbase.EncodedError |
searching dependent graphs…