# Error handling

What happens if the request fails on the server, or if a poor network connection prevents it from even reaching the server?`Elixor` will return an *error* object instead of a successful response.

You *could* handle in the component by adding a second callback to the `subscribe()`:

{% code title="Home.tsx" %}

```typescript
showConfig() {
  getConfig()
    .subscribe(
      (data: Config) => this.config = { ...data }, // success path
      error => this.error = error // error path
    );
}
```

{% endcode %}

It's certainly a good idea to give the user some kind of feedback when data access fails. But displaying the raw error object returned by `Elixor` is far from the best way to do it.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://elixor.js.org/error-handling.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
