Exception: Keg::AlreadyLinkedError Private

Inherits:
RuntimeError
  • Object
show all
Defined in:
keg.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.

Error for when a keg is already linked.

Instance Method Summary collapse

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.



15
16
17
18
19
20
# File 'keg.rb', line 15

def initialize(keg)
  super <<~EOS
    Cannot link #{keg.name}
    Another version is already linked: #{keg.linked_keg_record.resolved_path}
  EOS
end