async_wrapper.exception.py
- exception async_wrapper.exception.PendingError[source]
Bases:
ExceptionException used exclusively for pending values.
This exception is used within the context of handling soon values.
- exception async_wrapper.exception.QueueError[source]
Bases:
ExceptionBase exception for queue-related errors.
This exception serves as the base class for various queue-related exceptions.
- exception async_wrapper.exception.QueueEmptyError[source]
Bases:
QueueErrorException raised when attempting to retrieve an item from an empty queue.
This exception occurs when trying to get an item from a queue that has no available items.
- exception async_wrapper.exception.QueueFullError[source]
Bases:
QueueErrorException raised when attempting to add an item to a full queue.
This exception occurs when trying to put an item into a queue that has reached its capacity.
- exception async_wrapper.exception.QueueClosedError[source]
Bases:
QueueErrorError that occurs when attempting to get from or put into a closed queue.
- This error is different from QueueBrokenError.
QueueBrokenErroris an unintended error.QueueClosedErroris an error deliberately raised.
- exception async_wrapper.exception.QueueBrokenError[source]
Bases:
QueueErrorError that occurs when trying to get from or put into a closed queue.
- This error is different from QueueClosedError.
QueueClosedErroris an error deliberately raised.QueueBrokenErroris an unintended error.
- exception async_wrapper.exception.QueueRestrictedError[source]
Bases:
QueueErrorqueue is restricted but used