class CommandExecutionError
	
	
	Exception raised when a command execution fails.
Definitions
attr_reader :status
Signature
	- 
					attribute 
Process::Status The status object of the failed command.
def exit_code
Helper method for convenience.
Implementation
						def exit_code
	@status.exitstatus
end