Part of twisted.internet View Source
Exceptions and errors for use in twisted.internet modules.
Maintainer: Itamar Shtull-Trauring| Line # | Kind | Name | Docs |
|---|---|---|---|
| 14 | Class | BindError | An error occurred binding to an interface |
| 24 | Class | CannotListenError | This gets raised by a call to startListening, when the object cannot start listening. |
| 44 | Class | MulticastJoinError | An attempt to join a multicast group failed. |
| 50 | Class | MessageLengthError | Message is too long to send |
| 61 | Class | DNSLookupError | DNS lookup failed |
| 72 | Class | ConnectInProgressError | A connect operation was started and isn't done yet. |
| 78 | Class | ConnectError | An error occurred while connecting |
| 95 | Class | ConnectBindError | Couldn't bind |
| 99 | Class | UnknownHostError | Hostname couldn't be looked up |
| 103 | Class | NoRouteError | No route to host |
| 107 | Class | ConnectionRefusedError | Connection was refused by other side |
| 111 | Class | TCPTimedOutError | TCP connection timed out |
| 115 | Class | BadFileError | File used for UNIX socket is no good |
| 119 | Class | ServiceNameUnknownError | Service name given as port is unknown |
| 123 | Class | UserError | User aborted connection |
| 127 | Class | TimeoutError | User timeout caused connection failure |
| 130 | Class | SSLError | An SSL error occurred |
| 133 | Class | VerifyError | Could not verify something that was supposed to be signed. |
| 137 | Class | PeerVerifyError | The peer rejected our verify error. |
| 141 | Class | CertificateError | We did not find a certificate where we expected to find one. |
| 159 | Function | getConnectError | Given a socket exception, return connection error. |
| 175 | Class | ConnectionClosed | Connection was closed, whether cleanly or non-cleanly. |
| 182 | Class | ConnectionLost | Connection to the other side was lost in a non-clean fashion |
| 194 | Class | ConnectionDone | Connection was closed cleanly |
| 205 | Class | ConnectionFdescWentAway | Uh |
| 209 | Class | AlreadyCalled | Tried to cancel an already-called event |
| 220 | Class | AlreadyCancelled | Tried to cancel an already-cancelled event |
| 232 | Class | PotentialZombieWarning | Emitted when IReactorProcess.spawnProcess
is called in a way which may
|
| 247 | Class | ProcessDone | A process has ended without apparent errors |
| 257 | Class | ProcessTerminated | A process has ended with a probable error condition |
| 270 | Class | ProcessExitedAlready | The process has already exited and the operation requested can no longer |
| 277 | Class | NotConnectingError | The Connector was not connecting when it was asked to stop connecting |
| 287 | Class | NotListeningError | The Port was not listening when it was asked to stop listening |
| 298 | Class | ReactorNotRunning | Error raised when trying to stop a reactor which is not running. |
| 304 | Class | ReactorAlreadyRunning | Error raised when trying to start the reactor multiple times. |