> For the complete documentation index, see [llms.txt](https://kopeechka-py-lib.gitbook.io/kopeechka/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://kopeechka-py-lib.gitbook.io/kopeechka/exceptions/timeout.md).

# TimeOut

Исключение TimeOut

Данное исключение вызывается при превышении времени ожидания, указанного в классе MailActivations или AsyncMailActivations (по умолчанию равно 5 секундам)

```python
from kopeechka import MailActivations, TimeOut

api = MailActivations(api_token="TOKEN")

try:
    api.user_balance()
except TimeOut as e:
    print(e) # -> If it timed out, it return "Timed out"
```
