TaskfileNetworkTimeoutError is returned when the user attempts to use a remote Taskfile but a network connection could not be established within the timeout.
| 163 | // TaskfileNetworkTimeoutError is returned when the user attempts to use a remote |
| 164 | // Taskfile but a network connection could not be established within the timeout. |
| 165 | type TaskfileNetworkTimeoutError struct { |
| 166 | URI string |
| 167 | Timeout time.Duration |
| 168 | } |
| 169 | |
| 170 | func (err *TaskfileNetworkTimeoutError) Error() string { |
| 171 | return fmt.Sprintf( |
nothing calls this directly
no outgoing calls
no test coverage detected