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 ⇒ Object readonly private
 
Instance Method Summary collapse
- 
  
    
      #initialize(status)  ⇒ ChildProcessError 
    
    
  
  
  
    constructor
  
  
  
  
  
  private
  
    
A new instance of ChildProcessError.
 
Constructor Details
#initialize(status) ⇒ ChildProcessError
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 a new instance of ChildProcessError.
      783 784 785 786 787  | 
    
      # File 'exceptions.rb', line 783 def initialize(status) @status = status super "Forked child process failed: #{status}" end  | 
  
Instance Attribute Details
#status ⇒ Object (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.
      781 782 783  | 
    
      # File 'exceptions.rb', line 781 def status @status end  |