-__ALL__ = ('IpHandler',)
-
-# TODO: convertir HopHandler a ComposedSubHandler
-
-class HopError(HandlerError):
-
- def __init__(self, hop):
- self.message = u'Hop error : "%s"' % hop
-
-class HopNotFoundError(HopError):
-
- def __init__(self, hop):
- self.message = u'Hop not found : "%s"' % hop
-
-class HopAlreadyExistsError(HopError):
-
- def __init__(self, hop):
- self.message = u'Hop already exists : "%s"' % hop