python_app_exceptions.retry =========================== .. py:module:: python_app_exceptions.retry .. autoapi-nested-parse:: Retry logic exception classes. Classes ------- .. autoapisummary:: python_app_exceptions.retry.RetryExhaustedException python_app_exceptions.retry.RetryableError Module Contents --------------- .. py:class:: RetryExhaustedException(operation: str, attempts: int) Bases: :py:obj:`python_app_exceptions.base.BaseApplicationException` Raised when retry attempts are exhausted. .. py:class:: RetryableError(message: str, retry_after: int = None) Bases: :py:obj:`python_app_exceptions.base.BaseApplicationException` Raised for errors that can be retried. .. py:attribute:: retry_after :value: None