GraphApi.Error.RateLimitError exception (GraphApi v1.0.0-rc.1)

Copy Markdown View Source

Represents a 429 Too Many Requests response after retry exhaustion.

Fields

  • :retry_after - The Retry-After header value in seconds (if provided)
  • :message - Human-readable error message

Summary

Types

t()

@type t() :: %GraphApi.Error.RateLimitError{
  __exception__: true,
  message: String.t(),
  retry_after: integer() | nil
}