From 687957f21fbd6ff281b6a26bb88cf88cccc949d4 Mon Sep 17 00:00:00 2001 From: tcely Date: Fri, 6 Jun 2025 04:50:20 -0400 Subject: [PATCH] Add `BgTaskWorkerError` exception --- tubesync/common/errors.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tubesync/common/errors.py b/tubesync/common/errors.py index 9ff44a48..17ebec40 100644 --- a/tubesync/common/errors.py +++ b/tubesync/common/errors.py @@ -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