()
| 86 | } |
| 87 | |
| 88 | func ErrorAuthOtherAccount() error { |
| 89 | return errors.WithStack(&errors.Error{ |
| 90 | Kind: ErrAuthOtherAccount, |
| 91 | Message: "the AWS account associated with your CLI's AWS credentials differs from the AWS account associated with your cluster's AWS credentials; run `aws sts get-caller-identity` to view the credentials being used by the cortex client", |
| 92 | }) |
| 93 | } |
| 94 | |
| 95 | func ErrorFormFileMustBeProvided(fileName string) error { |
| 96 | return errors.WithStack(&errors.Error{ |
no test coverage detected