| 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 |
nothing calls this directly
no outgoing calls
no test coverage detected