> 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/contracts/contracts.with_error_suffix.md).

# Contracts.with\_error\_suffix()

Adds a filter to get contracts that have an error whose name has the given suffix.

`with_error_suffix(suffix: str, sensitivity: bool = True) ->` [`Contracts`](/glider-ide/api/contracts.md)

## Query Example

```python
from glider import *

def query():
  contracts = Contracts().with_error_suffix("admin", sensitivity=False).exec(1)
  errors = contracts[0].errors().exec()
  for error in errors:
    print(error.signature)

  return contracts
```

## Output Example

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2Fhj4Cwbiv2j9ftpZc2VYw%2Fimage.png?alt=media&amp;token=e8cc0871-126a-4a21-9697-126ce46aae8d" alt=""><figcaption></figcaption></figure>
