Check if the error is retryable based on status code
| 34 | |
| 35 | /// Check if the error is retryable based on status code |
| 36 | bool is_retryable() const { |
| 37 | return ai::is_status_code_retryable(status_code_); |
| 38 | } |
| 39 | }; |
| 40 | |
| 41 | /// Error related to authentication/authorization |
nothing calls this directly
no test coverage detected