Deprecated: IsTimeout reports whether err is a Timeout error. Use Is(err, Timeout).
(err error)
| 133 | // Deprecated: IsTimeout reports whether err is a Timeout error. Use |
| 134 | // Is(err, Timeout). |
| 135 | func IsTimeout(err error) bool { |
| 136 | return Is(err, Timeout) |
| 137 | } |
| 138 | |
| 139 | // NotFoundf returns an error which satisfies Is(err, NotFound) and the |
| 140 | // Locationer interface. |
nothing calls this directly
no test coverage detected
searching dependent graphs…