class Error < RuntimeError

Inherits from
RuntimeError

Raised when the child process exits unsuccessfully without returning an exception.

Definitions

def initialize(status)

Signature

parameter status Process::Status

The child process's exit status.

Implementation

def initialize(status)
	@status = status
	super("Isolated Ruby failed (#{status})")
end

attr :status

Signature

attribute Process::Status

The child process's exit status.