Files
django-q2/django_q/exceptions.py
2024-06-23 22:36:29 +02:00

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