> 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/contract/contract.errors.md).

# Contract.errors()

`errors() →` [`Errors`](/glider-ide/api/errors.md)

## Example query

```python
from glider import *

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

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

  return contracts
```

## Example output

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