# `GraphApi.Error.RateLimitError`
[🔗](https://github.com/keenmate/microsoft_graph/blob/v1.0.0-rc.1/lib/graph_api/error.ex#L62)

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

# `t`

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

---

*Consult [api-reference.md](api-reference.md) for complete listing*
