class Async::Container::Threaded::Child::Exit
Used to propagate the exit status of a child process invoked by {Instance#exec}.
def error
The process exit status if it was an error.
def error unless status.success? status end end
def initialize(status)
Initialize the exit status.
def initialize(status) @status = status end