Exception: Keg::AlreadyLinkedError 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.
Error for when a keg is already linked.
Instance Method Summary collapse
- 
  
    
      #initialize(keg)  ⇒ AlreadyLinkedError 
    
    
  
  
  
    constructor
  
  
  
  
  
  private
  
    
A new instance of AlreadyLinkedError.
 
Constructor Details
#initialize(keg) ⇒ AlreadyLinkedError
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 AlreadyLinkedError.
      17 18 19 20 21 22  | 
    
      # File 'keg.rb', line 17 def initialize(keg) super <<~EOS Cannot link #{keg.name} Another version is already linked: #{keg.linked_keg_record.resolved_path} EOS end  |