(format string, details map[string]any, args ...any)
| 149 | } |
| 150 | |
| 151 | func appKeyRequiredErrorfWithDetails(format string, details map[string]any, args ...any) error { |
| 152 | return newCodedError(jsonErrorCodeAppKeyRequired, fmt.Errorf(format, args...), details) |
| 153 | } |
| 154 | |
| 155 | func authExchangeFailedError(message string) error { |
| 156 | return newCodedError(jsonErrorCodeAuthExchangeFailed, errors.New(message)) |
no test coverage detected