aboutsummaryrefslogtreecommitdiffstats
path: root/python_moonclient/python_moonclient/core/cli_exceptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'python_moonclient/python_moonclient/core/cli_exceptions.py')
-rw-r--r--python_moonclient/python_moonclient/core/cli_exceptions.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/python_moonclient/python_moonclient/core/cli_exceptions.py b/python_moonclient/python_moonclient/core/cli_exceptions.py
new file mode 100644
index 00000000..2ec2ed18
--- /dev/null
+++ b/python_moonclient/python_moonclient/core/cli_exceptions.py
@@ -0,0 +1,7 @@
+class MoonCliException(Exception):
+ def __init__(self, message):
+
+ # Call the base class constructor with the parameters it needs
+ super(MoonCliException, self).__init__(message)
+
+