Error
Raised when an external program exits unsuccessfully.
Spawn, lookup and other I/O failures do not raise this; they raise
sys.Error instead.
str(err) returns a stable process-failure message, such as an exit status
or a fatal signal description.
Example
Inherits from: std.RuntimeError
Fields
rc @ (Int | nil)The numeric exit status, or
nilif the process did not exit normally.signal @ (Int | nil)The fatal signal number, or
nilwhen the process was not signaled.A signaled process reports this instead of
rc:Unix only: reading it against a Windows target raises
FieldError.