(target error)
| 131 | } |
| 132 | |
| 133 | func (err sentinelError) Is(target error) bool { |
| 134 | return errors.Is(err.sentinel, target) || errors.Is(err.wrapped, target) |
| 135 | } |
| 136 | |
| 137 | func (err sentinelError) Unwrap() error { |
| 138 | return err.wrapped |
no outgoing calls