summaryrefslogtreecommitdiff
path: root/src/leap/mx/exceptions.py
diff options
context:
space:
mode:
authorTomas Touceda <chiiph@leap.se>2013-04-24 16:47:07 -0300
committerTomas Touceda <chiiph@leap.se>2013-04-24 16:47:07 -0300
commitf56d043854cb4281c81e2ee6a6b99ff9d03ad9d6 (patch)
tree6ef945980b6a61db3d38ea0e6e123b35775f1c32 /src/leap/mx/exceptions.py
parent046ef8b23c04333007276b560670f69d9011fb40 (diff)
Improve the rest and start everything from start_mx
Diffstat (limited to 'src/leap/mx/exceptions.py')
-rw-r--r--src/leap/mx/exceptions.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/leap/mx/exceptions.py b/src/leap/mx/exceptions.py
deleted file mode 100644
index 63b946c..0000000
--- a/src/leap/mx/exceptions.py
+++ /dev/null
@@ -1,23 +0,0 @@
-#! -*- encoding: utf-8 -*-
-"""
-Custom exceptions for leap_mx.
-
-@authors: Isis Lovecruft, <isis@leap.se> 0x2cdb8b35
-@version: 0.0.1
-@license: see included LICENSE file
-"""
-
-
-class MissingConfig(Exception):
- """Raised when the config file cannot be found."""
- def __init__(self, message=None, config_file=None):
- if message:
- return
- else:
- self.message = "Cannot locate config file"
- if config_file:
- self.message += " %s" % config_file
- self.message += "."
-
-class UnsupportedOS(Exception):
- """Raised when we're not *nix or *BSD."""