(target any)
| 51 | } |
| 52 | |
| 53 | func (f marked) As(target any) bool { |
| 54 | // if this is false, errors.As will call unwrap and retry on the wrapped |
| 55 | // error. |
| 56 | return errors.As(f.mark, target) |
| 57 | } |
| 58 | |
| 59 | func (f marked) Unwrap() error { |
| 60 | return f.wrapped |
no outgoing calls
no test coverage detected