(errs ...error)
| 36 | func Is(x, y error) bool { return stderrors.Is(x, y) } |
| 37 | |
| 38 | func Join(errs ...error) error { return stderrors.Join(errs...) } |
| 39 | |
| 40 | // Unwrap returns the result of calling the Unwrap method on err, if err's type contains |
| 41 | // an Unwrap method returning error. Otherwise, Unwrap returns nil. |
no test coverage detected