Lines Matching refs:abort
168 IMAP4 server errors raise <instance>.abort("<reason>"),
171 <instance>.readonly("<reason>"), which is a sub-class of 'abort'.
174 "abort" exceptions imply the connection should be reset, and
185 class abort(error): pass # Service errors - close and retry
186 class readonly(abort): pass # Mailbox status changed to READ-ONLY
434 return None if the client abort response '*' should be sent instead.
814 raise self.abort('TLS session already established')
816 raise self.abort('TLS not supported by server')
961 raise self.abort(bye[-1].decode(self._encoding, 'replace'))
1008 raise self.abort('socket error: %s' % val)
1033 raise self.abort('socket error: %s' % val)
1048 except self.abort as val:
1049 raise self.abort('command: %s => %s' % (name, val))
1082 raise self.abort('unexpected tagged response: %r' % resp)
1104 raise self.abort("unexpected response: %r" % resp)
1174 except self.abort as val:
1185 raise self.abort('socket error: EOF')
1189 raise self.abort('socket error: unterminated line: %r' % line)