()
| 86 | } |
| 87 | |
| 88 | func ErrorNoAvailableEnvironment() error { |
| 89 | return errors.WithStack(&errors.Error{ |
| 90 | Kind: ErrNoAvailableEnvironment, |
| 91 | Message: "no environments are configured; run `cortex cluster up` to create a cluster, or run `cortex env configure` to connect to an existing cluster", |
| 92 | }) |
| 93 | } |
| 94 | |
| 95 | func ErrorEnvironmentNotSet() error { |
| 96 | return errors.WithStack(&errors.Error{ |
no test coverage detected