es-toolkit/docs/reference/error/TimeoutError.md
2024-08-11 21:38:32 +09:00

14 lines
276 B
Markdown

# 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',
}
```