Package epyunit :: Module SystemCalls :: Class SystemCallsExceptionSubprocessError
[hide private]
[frames] | no frames]

Class SystemCallsExceptionSubprocessError

source code


Error from subprocess.
Instance Methods [hide private]
 
__init__(self, *args, **kargs)
Calls the 'exceptions.SystemExit' with pass through of parameters.
source code

Inherited from exceptions.SystemExit: __new__

Inherited from exceptions.BaseException: __delattr__, __getattribute__, __getitem__, __getslice__, __reduce__, __repr__, __setattr__, __setstate__, __str__, __unicode__

Inherited from object: __format__, __hash__, __reduce_ex__, __sizeof__, __subclasshook__

Properties [hide private]

Inherited from exceptions.SystemExit: code

Inherited from exceptions.BaseException: args, message

Inherited from object: __class__

Method Details [hide private]

__init__(self, *args, **kargs)
(Constructor)

source code 

Calls the 'exceptions.SystemExit' with pass through of parameters.

Args:
**kargs: Additional parameters specific for ePyUnit

where the interface is not actually clear. These are removed before the pass-through call.

exitval: Replaces 'exceptions.SystemExit.code', the

first param value when of type 'int'. The default is defined as '1'.

REMARK: Did not found an official interface for
'exceptions.SystemExit.__init__', thus opted to temporary injection.

exitmsg: Defines display test.

Returns:
None/Itself
Raises:
itself
Overrides: object.__init__