Source code for tq42.exceptions.retries_exceeded_error
from tq42.exceptions.tq42_api_error import TQ42APIError
[docs]class ExceedRetriesError(TQ42APIError):
"""
Raised when polling exceeds max retries
Attributes:
tries (int): max retries that have been exceeded
"""
def __init__(self, tries: int):
self.tries = tries
def __str__(self):
return "Polling exceeded. Number of retries: {}".format(self.tries)