Error related to request rate limiting
| 47 | |
| 48 | /// Error related to request rate limiting |
| 49 | class RateLimitError : public APIError { |
| 50 | public: |
| 51 | explicit RateLimitError(const std::string& message) |
| 52 | : APIError(429, "Rate limit exceeded: " + message) {} |
| 53 | }; |
| 54 | |
| 55 | /// Error related to invalid configuration |
| 56 | class ConfigurationError : public AIError { |
nothing calls this directly
no outgoing calls
no test coverage detected