Exception: TapAlreadyTappedError 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 tap is already installed.
Instance Attribute Summary collapse
- #name ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(name) ⇒ TapAlreadyTappedError
constructor
private
A new instance of TapAlreadyTappedError.
Constructor Details
#initialize(name) ⇒ TapAlreadyTappedError
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 TapAlreadyTappedError.
345 346 347 348 349 350 351 |
# File 'exceptions.rb', line 345 def initialize(name) @name = name super <<~EOS Tap #{name} already tapped. EOS end |
Instance Attribute Details
#name ⇒ 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.
343 344 345 |
# File 'exceptions.rb', line 343 def name @name end |