TaskfileCacheNotFoundError is returned when the user attempts to use an offline (cached) Taskfile but the files does not exist in the cache.
| 118 | // TaskfileCacheNotFoundError is returned when the user attempts to use an offline |
| 119 | // (cached) Taskfile but the files does not exist in the cache. |
| 120 | type TaskfileCacheNotFoundError struct { |
| 121 | URI string |
| 122 | } |
| 123 | |
| 124 | func (err *TaskfileCacheNotFoundError) Error() string { |
| 125 | return fmt.Sprintf( |
nothing calls this directly
no outgoing calls
no test coverage detected