()
| 37 | } |
| 38 | |
| 39 | func ErrorLoadBalancerInitializing() error { |
| 40 | return errors.WithStack(&errors.Error{ |
| 41 | Kind: ErrLoadBalancerInitializing, |
| 42 | Message: "load balancer is still initializing", |
| 43 | }) |
| 44 | } |
| 45 | |
| 46 | func ErrorInvalidOperatorLogLevel(provided string, loglevels []string) error { |
| 47 | return errors.WithStack(&errors.Error{ |
no test coverage detected