Module rugged.exceptions.timeout_error
Classes
class RuggedTimeoutError (msg='The operation exceeded the given deadline.')
-
Expand source code
class RuggedTimeoutError(TimeoutError, BaseException): def __init__(self, msg="The operation exceeded the given deadline."): self.msg = msg log.debug(f"{self.__class__.__name__}: {msg}") def __str__(self): return self.msg
The operation timed out.
Ancestors
- celery.exceptions.TimeoutError
- celery.exceptions.TaskError
- celery.exceptions.CeleryError
- builtins.Exception
- builtins.BaseException