2023-10-17 18:25:25 +00:00
|
|
|
type
|
|
|
|
AsyncError* = object of CatchableError
|
|
|
|
## Generic async exception
|
|
|
|
AsyncTimeoutError* = object of AsyncError
|
|
|
|
## Timeout exception
|
2023-11-08 14:12:32 +00:00
|
|
|
|
|
|
|
AsyncExceptionError* = object of AsyncError
|
|
|
|
## Error raised in `handleException` mode - the original exception is
|
|
|
|
## available from the `parent` field.
|