TaskCancelledByUserError is returned when the user does not accept an optional prompt to continue.
| 120 | |
| 121 | // TaskCancelledByUserError is returned when the user does not accept an optional prompt to continue. |
| 122 | type TaskCancelledByUserError struct { |
| 123 | TaskName string |
| 124 | } |
| 125 | |
| 126 | func (err *TaskCancelledByUserError) Error() string { |
| 127 | return fmt.Sprintf(`task: Task %q cancelled by user`, err.TaskName) |
nothing calls this directly
no outgoing calls
no test coverage detected