Exception: ChildProcessError Private

Inherits:
RuntimeError
  • Object
show all
Defined in:
exceptions.rb

Overview

This class is part of a private API. This class may only be used in the Homebrew/brew repository. Third parties should avoid using this class if possible, as it may be removed or changed without warning.

Raised when a Utils.safe_fork exits with a non-zero code.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(status) ⇒ void

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:

  • status (Process::Status)


972
973
974
975
976
# File 'exceptions.rb', line 972

def initialize(status)
  @status = status

  super "Forked child process failed: #{status}"
end

Instance Attribute Details

#statusProcess::Status (readonly)

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns:

  • (Process::Status)


969
970
971
# File 'exceptions.rb', line 969

def status
  @status
end