(message string, details map[string]any)
| 157 | } |
| 158 | |
| 159 | func authExchangeFailedErrorWithDetails(message string, details map[string]any) error { |
| 160 | return newCodedError(jsonErrorCodeAuthExchangeFailed, errors.New(message), details) |
| 161 | } |
| 162 | |
| 163 | func authExchangeFailedErrorfWithDetails(format string, details map[string]any, args ...any) error { |
| 164 | return newCodedError(jsonErrorCodeAuthExchangeFailed, fmt.Errorf(format, args...), details) |
no test coverage detected