es-toolkit/docs/reference/error/TimeoutError.md

14 lines
276 B
Markdown
Raw Normal View History

2024-08-11 15:38:32 +03:00
# TimeoutError
An error class representing an timeout.
It occurs when operations like [timeout](../promise/timeout.md) or [withTimeout](../promise/withTimeout.md) have timed out.
## Interface
```typescript
class TimeoutError extends Error {
name = 'TimeoutError',
}
```