mirror of
https://github.com/tropicoo/yt-dlp-bot.git
synced 2025-03-06 11:45:42 +08:00
13 lines
238 B
Python
13 lines
238 B
Python
from yt_shared.models import Task
|
|
|
|
|
|
class BaseVideoServiceError(Exception):
|
|
task: Task | None = None
|
|
|
|
|
|
class GeneralVideoServiceError(BaseVideoServiceError):
|
|
pass
|
|
|
|
|
|
class DownloadVideoServiceError(BaseVideoServiceError):
|
|
pass
|