Add the exceptions and helpers.

This commit is contained in:
2025-01-26 14:27:46 +02:00
parent a4a0f32f52
commit 769edabbd3
5 changed files with 34 additions and 0 deletions
@@ -0,0 +1,4 @@
from .app_exception import AppException
from .command_exception import CommandException
__all__ = ['AppException', 'CommandException']
@@ -0,0 +1,3 @@
class AppException(Exception):
pass
@@ -0,0 +1,6 @@
from . import AppException
class CommandException(AppException):
"""Command failed to change persistence data."""
pass