TaskfileFetchFailedError is returned when no appropriate Taskfile is found when searching the filesystem.
| 65 | // TaskfileFetchFailedError is returned when no appropriate Taskfile is found when |
| 66 | // searching the filesystem. |
| 67 | type TaskfileFetchFailedError struct { |
| 68 | URI string |
| 69 | HTTPStatusCode int |
| 70 | } |
| 71 | |
| 72 | func (err TaskfileFetchFailedError) Error() string { |
| 73 | var statusText string |
nothing calls this directly
no outgoing calls
no test coverage detected