()
| 168 | } |
| 169 | |
| 170 | func (err *TaskfileNetworkTimeoutError) Error() string { |
| 171 | return fmt.Sprintf( |
| 172 | `task: Network connection timed out after %s while attempting to download Taskfile %q`, |
| 173 | err.Timeout, filepath.ToSlash(err.URI), |
| 174 | ) |
| 175 | } |
| 176 | |
| 177 | func (err *TaskfileNetworkTimeoutError) Code() int { |
| 178 | return CodeTaskfileNetworkTimeout |
nothing calls this directly
no outgoing calls
no test coverage detected