(format string, args ...any)
| 165 | } |
| 166 | |
| 167 | func authRefreshFailedErrorf(format string, args ...any) error { |
| 168 | return newCodedError(jsonErrorCodeAuthRefreshFailed, fmt.Errorf(format, args...)) |
| 169 | } |
| 170 | |
| 171 | func authRefreshFailedErrorfWithDetails(format string, details map[string]any, args ...any) error { |
| 172 | return newCodedError(jsonErrorCodeAuthRefreshFailed, fmt.Errorf(format, args...), details) |