> For the complete documentation index, see [llms.txt](https://ryunosukee.gitbook.io/vue3-datatables/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ryunosukee.gitbook.io/vue3-datatables/server-table/error-message.md).

# Error Message

In case the request fails (i.e 4xx or 5xx status) the loading message will be replaced by the (default) message: 'Error loading results'

You can modify this message using the `texts.loadingError` property:

```javascript
options:{
  texts:{
    loadingError: 'Oops! Something went wrong'
  }
}
```

The `tr` will have the class 'VueTables\_\_error' which you can use to style the message, e.g:

```
.VueTables__error {
  color:red;
}
```
