> For the complete documentation index, see [llms.txt](https://docs.r.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.r.xyz/glider-ide/api/errors/errors.exec.md).

# Errors.exec()

`exec(`*`limit_count: int = 0, offset_count: int = 0`*`) →` [`APIList`](/glider-ide/api/iterables/apilist.md)`[`[`Error`](/glider-ide/api/error.md)`]`

## Query Example

```python
from glider import *

def query():
  contracts = Contracts().exec(1, 2265)

  for contract in contracts:
    for error in contract.errors().exec():
      print(error.name)

  return []
```

## Example Output

<figure><img src="/files/NkbWE33j9e0riRDjlXNs" alt=""><figcaption></figcaption></figure>
