MCPcopy Index your code
hub / github.com/commandoperator/cmdop-sdk / RateLimitError

Class RateLimitError

python/src/cmdop/errors.py:61–66  ·  view source on GitHub ↗

``rate_limit`` — too many requests (429).

Source from the content-addressed store, hash-verified

59
60
61class RateLimitError(CmdopError):
62 """``rate_limit`` — too many requests (429)."""
63
64 def __init__(self, *args: Any, retry_after: int | None = None, **kwargs: Any) -> None:
65 super().__init__(*args, **kwargs)
66 self.retry_after = retry_after
67
68
69class ServerError(CmdopError):

Callers 1

map_core_errorFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected