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

Represents an authentication/authorization error from Entra ID.

## Fields

* `:status` - HTTP status code
* `:error` - OAuth error code (e.g., "invalid_client")
* `:error_description` - Human-readable error description

# `t`

```elixir
@type t() :: %GraphApi.Error.AuthError{
  __exception__: true,
  error: String.t() | nil,
  error_description: String.t() | nil,
  status: integer()
}
```

---

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