MCPcopy Create free account
hub / github.com/ClickHouse/ai-sdk-cpp / RateLimitError

Class RateLimitError

include/ai/errors.h:49–53  ·  view source on GitHub ↗

Error related to request rate limiting

Source from the content-addressed store, hash-verified

47
48/// Error related to request rate limiting
49class 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
56class ConfigurationError : public AIError {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected