twitch-dl/twitchdl/exceptions.py

8 lines
139 B
Python
Raw Normal View History

2024-03-28 11:35:11 +00:00
import click
2024-04-04 06:20:10 +00:00
2024-03-28 11:35:11 +00:00
class ConsoleError(click.ClickException):
"""Raised when an error occurs and script exectuion should halt."""
2024-04-04 06:20:10 +00:00
pass