class Async::Container::Threaded::Child::Exit

Used to propagate the exit status of a child process invoked by {Instance#exec}.

def error

@returns [::Process::Status | Nil]
The process exit status if it was an error.
def error
	unless status.success?
		status
	end
end

def initialize(status)

@parameter status [::Process::Status] The process exit status.
Initialize the exit status.
def initialize(status)
	@status = status
end