Home | History | Annotate | Download | only in python2.7

Lines Matching defs:error_proto

18 __all__ = ["POP3","error_proto"]
22 class error_proto(Exception): pass
59 Raises one exception: 'error_proto'.
103 # Raise error_proto('-ERR EOF') if the connection is closed.
108 if not line: raise error_proto('-ERR EOF')
121 # Raise 'error_proto' if the response doesn't start with '+'.
128 raise error_proto(resp)
252 except error_proto, val:
284 raise error_proto('-ERR APOP not supported by server')
359 raise error_proto('-ERR EOF')
395 except error_proto, val: