Exception: ChildProcessError Private
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
- #status ⇒ Process::Status readonly private
Instance Method Summary collapse
- #initialize(status) ⇒ void constructor private
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.
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
#status ⇒ Process::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.
969 970 971 |
# File 'exceptions.rb', line 969 def status @status end |