(format string, details map[string]any, args ...any)
| 161 | } |
| 162 | |
| 163 | func authExchangeFailedErrorfWithDetails(format string, details map[string]any, args ...any) error { |
| 164 | return newCodedError(jsonErrorCodeAuthExchangeFailed, fmt.Errorf(format, args...), details) |
| 165 | } |
| 166 | |
| 167 | func authRefreshFailedErrorf(format string, args ...any) error { |
| 168 | return newCodedError(jsonErrorCodeAuthRefreshFailed, fmt.Errorf(format, args...)) |
no test coverage detected