aboutsummaryrefslogtreecommitdiffstats
path: root/servo/exceptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'servo/exceptions.py')
-rw-r--r--servo/exceptions.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/servo/exceptions.py b/servo/exceptions.py
index 2cde43d..f4910ba 100644
--- a/servo/exceptions.py
+++ b/servo/exceptions.py
@@ -1,8 +1,6 @@
# -*- coding: utf-8 -*-
-class ServoException(Exception):
- """docstring for ServoException"""
+
+class ConfigurationError(Exception):
def __init__(self, arg):
- super(ServoException, self).__init__()
- self.arg = arg
- \ No newline at end of file
+ super(ConfigurationError, self).__init__(arg)