Source code for pdftools_sdk.retry_error
[docs]
class RetryError(Exception):
"""
A resource or service is temporarily unavailable.
"""
def __init__(self, message):
super().__init__(message)
[docs]
class RetryError(Exception):
"""
A resource or service is temporarily unavailable.
"""
def __init__(self, message):
super().__init__(message)