mirror of
https://github.com/django-q2/django-q2.git
synced 2026-09-15 21:47:53 +08:00
8 lines
202 B
Python
8 lines
202 B
Python
class TimeoutException(SystemExit):
|
|
"""
|
|
Exception for when a worker takes too long to complete a task
|
|
Raising SystemExit will make sure the function terminates gracefully.
|
|
"""
|
|
|
|
pass
|