mirror of https://github.com/peter4431/rq.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
491 B
Python
33 lines
491 B
Python
class NoSuchJobError(Exception):
|
|
pass
|
|
|
|
|
|
class DeserializationError(Exception):
|
|
pass
|
|
|
|
|
|
class InvalidJobDependency(Exception):
|
|
pass
|
|
|
|
|
|
class InvalidJobOperationError(Exception):
|
|
pass
|
|
|
|
|
|
class InvalidJobOperation(Exception):
|
|
pass
|
|
|
|
|
|
class DequeueTimeout(Exception):
|
|
pass
|
|
|
|
|
|
class ShutDownImminentException(Exception):
|
|
def __init__(self, msg, extra_info):
|
|
self.extra_info = extra_info
|
|
super().__init__(msg)
|
|
|
|
|
|
class TimeoutFormatError(Exception):
|
|
pass
|