summaryrefslogtreecommitdiff
path: root/bupper/exceptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'bupper/exceptions.py')
-rw-r--r--bupper/exceptions.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/bupper/exceptions.py b/bupper/exceptions.py
index 8944fe9..69201ef 100644
--- a/bupper/exceptions.py
+++ b/bupper/exceptions.py
@@ -1,4 +1,7 @@
-class RemoteExecException(Exception):
+class BackupException(Exception):
+ pass
+
+class RemoteExecException(BackupException):
retcode = None
output = None
def __init__(self, explanation, retcode, output):