Add BgTaskWorkerError exception

This commit is contained in:
tcely 2025-06-06 04:50:20 -04:00 committed by GitHub
parent 4cffc94aec
commit 687957f21f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -42,3 +42,8 @@ class DatabaseConnectionError(Exception):
Raised when parsing or initially connecting to a database.
'''
pass
class BgTaskWorkerError(Exception):
# Raised when the worker process is not in a normal working state.
pass