(apiName string)
| 62 | } |
| 63 | |
| 64 | func ErrorAPINotDeployed(apiName string) error { |
| 65 | return errors.WithStack(&errors.Error{ |
| 66 | Kind: ErrAPINotDeployed, |
| 67 | Message: fmt.Sprintf("%s is not deployed", apiName), |
| 68 | }) |
| 69 | } |
| 70 | |
| 71 | func ErrorAPIIDNotFound(apiName string, apiID string) error { |
| 72 | return errors.WithStack(&errors.Error{ |
no test coverage detected