Exception: TapNoCustomRemoteError Private
- Defined in:
- exceptions.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.
Raised when run brew tap --custom-remote
without a remote URL.
Instance Attribute Summary collapse
- #name ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(name) ⇒ TapNoCustomRemoteError
constructor
private
A new instance of TapNoCustomRemoteError.
Constructor Details
#initialize(name) ⇒ TapNoCustomRemoteError
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 TapNoCustomRemoteError.
358 359 360 361 362 363 364 |
# File 'exceptions.rb', line 358 def initialize(name) @name = name super <<~EOS Tap #{name} with option `--custom-remote` but without a remote URL. 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.
356 357 358 |
# File 'exceptions.rb', line 356 def name @name end |