aboutsummaryrefslogblamecommitdiffstats
path: root/libbe/error.py
blob: fa5678df540c2f35368a42481628eba269f641fd (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                        
# Copyright

"""
General error classes for Bugs-Everywhere.
"""

class NotSupported (NotImplementedError):
    def __init__(self, action, message):
        msg = '%s not supported: %s' % (action, message)
        NotImplementedError.__init__(self, msg)
        self.action = action
        self.message = message