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

def error

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