(format string, details map[string]any, args ...any)
| 137 | } |
| 138 | |
| 139 | func authRequiredErrorfWithDetails(format string, details map[string]any, args ...any) error { |
| 140 | return newCodedError(jsonErrorCodeAuthRequired, fmt.Errorf(format, args...), details) |
| 141 | } |
| 142 | |
| 143 | func appKeyRequiredError(message string) error { |
| 144 | return newCodedError(jsonErrorCodeAppKeyRequired, errors.New(message)) |
no test coverage detected