blob: fa5678df540c2f35368a42481628eba269f641fd (
plain) (
tree)
|
|
# 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
|