Timeoutf returns an error which satisfies Is(err, Timeout) and the Locationer interface.
(format string, args ...interface{})
| 115 | // Timeoutf returns an error which satisfies Is(err, Timeout) and the Locationer |
| 116 | // interface. |
| 117 | func Timeoutf(format string, args ...interface{}) error { |
| 118 | return newLocationError( |
| 119 | makeWrappedConstError(Timeout, format, args...), |
| 120 | 1, |
| 121 | ) |
| 122 | } |
| 123 | |
| 124 | // NewTimeout returns an error which wraps err and satisfies Is(err, Timeout) |
| 125 | // and the Locationer interface. |
nothing calls this directly
no test coverage detected
searching dependent graphs…