From 4f6f48247d7ba18fa7f42a5d8dbbea094dd674a6 Mon Sep 17 00:00:00 2001 From: furtest Date: Tue, 30 Dec 2025 17:54:47 +0100 Subject: [PATCH] Add classes for error handling --- src/unisync/errors.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/unisync/errors.py diff --git a/src/unisync/errors.py b/src/unisync/errors.py new file mode 100644 index 0000000..f1676f9 --- /dev/null +++ b/src/unisync/errors.py @@ -0,0 +1,5 @@ +class RemoteMountedError(BaseException): + pass + +class InvalidMountError(BaseException): + pass