mirror of
https://gitlab.com/KKlochko/tui-rsync.git
synced 2026-08-12 17:57:43 +00:00
Add the exceptions and helpers.
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user