Skip to content

Exceptions

Retry and strategy exceptions

RetryExaustedError

Bases: BaseException

Raised when the number of retries was exausted

Source code in pyretries/exceptions.py
 7
 8
 9
10
class RetryExaustedError(BaseException):
    """Raised when the number of retries was exausted"""

    ...

RetryStrategyExausted

Bases: BaseException

Raised when the strategy was exausted

Source code in pyretries/exceptions.py
13
14
15
16
class RetryStrategyExausted(BaseException):
    """Raised when the strategy was exausted"""

    ...