aboutsummaryrefslogtreecommitdiffstats
path: root/climl/interface.py
diff options
context:
space:
mode:
Diffstat (limited to 'climl/interface.py')
-rw-r--r--climl/interface.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/climl/interface.py b/climl/interface.py
index 5bafa2b..a42faac 100644
--- a/climl/interface.py
+++ b/climl/interface.py
@@ -3,7 +3,10 @@ This file defines symbols used to make communication between
hooks/plugins/extensions and core of climl.
'''
-class HookError(Exception):
+class Error(Exception):
+ ''' Base class for exceptions in this package '''
+
+class HookError(Error):
'''
Base class for hooks exception, they should not use this directly
'''