aboutsummaryrefslogtreecommitdiffstats
path: root/climl/interface.py
blob: 5a7f6ba66eff364b164fd3bfb5b69343ac49dab9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
'''
This file defines symbols used to make communication between
hooks/plugins/extensions and core of climl.
'''

class HookError(Exception):
    '''
        Base class for hooks exception, they should not use this directly
    '''

    pass

class HookAbortError(HookError):
    '''
        This exception is used to indicate to core of climl it should not mark
        email \Seen for now.
    '''

    pass