module documentation
(source)

Exceptions and errors for use in twisted.internet modules.
Class AlreadyCalled Undocumented
Class AlreadyCancelled Undocumented
Class AlreadyListened An attempt was made to listen on a file descriptor which can only be listened on once.
Class BadFileError Undocumented
Class BindError Undocumented
Class CannotListenError This gets raised by a call to startListening, when the object cannotstart listening.
Class CertificateError Undocumented
Class ConnectBindError Undocumented
Class ConnectError Undocumented
Class ConnectingCancelledError An Exception that will be raised when an IStreamClientEndpoint is cancelled before it connects.
Class ConnectInProgressError A connect operation was started and isn't done yet.
Class ConnectionAborted Connection was aborted locally, using twisted.internet.interfaces.ITCPTransport.abortConnection.
Class ConnectionClosed Connection was closed, whether cleanly or non-cleanly.
Class ConnectionDone Undocumented
Class ConnectionFdescWentAway Undocumented
Class ConnectionLost Undocumented
Class ConnectionRefusedError Undocumented
Class DNSLookupError Undocumented
Class FileDescriptorOverrun A mis-use of IUNIXTransport.sendFileDescriptor caused the connection to be closed.
Class InvalidAddressError An invalid address was specified (i.e. neither IPv4 or IPv6, or expected one and got the other).
Class MessageLengthError Undocumented
Class MulticastJoinError An attempt to join a multicast group failed.
Class NoProtocol An Exception that will be raised when the factory given to a IStreamClientEndpoint returns None from buildProtocol.
Class NoRouteError Undocumented
Class NotConnectingError Undocumented
Class NotListeningError Undocumented
Class PeerVerifyError Undocumented
Class PotentialZombieWarning Emitted when IReactorProcess.spawnProcess is called in a way which may result in termination of the created child process not being reported.
Class ProcessDone Undocumented
Class ProcessExitedAlready The process has already exited and the operation requested can no longer be performed.
Class ProcessTerminated No class docstring; 0/3 instance variable, 0/2 class variable, 1/1 method documented
Class ReactorAlreadyInstalledError Could not install reactor because one is already installed.
Class ReactorAlreadyRunning Error raised when trying to start the reactor multiple times.
Class ReactorNotRestartable Error raised when trying to run a reactor which was stopped.
Class ReactorNotRunning Error raised when trying to stop a reactor which is not running.
Class ServiceNameUnknownError Undocumented
Class SSLError Undocumented
Class TCPTimedOutError Undocumented
Class TimeoutError Undocumented
Class UnknownHostError Undocumented
Class UnsupportedAddressFamily An attempt was made to use a socket with an address family (eg AF_INET, AF_INET6, etc) which is not supported by the reactor.
Class UnsupportedSocketType An attempt was made to use a socket of a type (eg SOCK_STREAM, SOCK_DGRAM, etc) which is not supported by the reactor.
Class UserError Undocumented
Class VerifyError Undocumented
Function getConnectError Given a socket exception, return connection error.
Variable errnoMapping Undocumented
def getConnectError(e): (source)
Given a socket exception, return connection error.
errnoMapping: dict = (source)

Undocumented