Put all exceptions in their dedicated module.

This commit is contained in:
Frédéric Tronel
2026-08-29 15:30:47 +02:00
parent 280eb1facb
commit 294d857206
2 changed files with 25 additions and 2 deletions
+2 -2
View File
@@ -8,10 +8,10 @@ from shutil import which
from typeguard import typechecked
from tscut.exceptions import MissingToolError
logger = logging.getLogger(__name__)
class MissingToolError(Exception):
pass
@typechecked
def check_required_tools() -> tuple[bool,dict[str,str]]: