exception documentation

Undocumented

Method __init__ No summary
Constant MESSAGE Undocumented
Class Variable __doc__ Undocumented
Instance Variable exitCode Undocumented
Instance Variable signal Undocumented
Instance Variable status Undocumented

Inherited from ConnectionLost:

Method __str__ Undocumented
def __init__(self, exitCode=None, signal=None, status=None): (source)
Parameters
exitCode:int or NoneThe exit status of the process. This is roughly like the value you might pass to os._exit. This is None if the process exited due to a signal.
signal:int or NoneThe exit signal of the process. This is None if the process did not exit due to a signal.
status:intThe exit code of the process. This is a platform specific combination of the exit code and the exit signal. See os.WIFEXITED and related functions.

Undocumented

Value
'''
    A process has ended with a probable error condition

    @ivar exitCode: See L{__init__}
    @ivar signal: See L{__init__}
    @ivar status: See L{__init__}
    '''
exitCode = (source)

Undocumented

Undocumented

Undocumented