Exception: TapNoCustomRemoteError Private

Inherits:
RuntimeError
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ void

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.

Parameters:



479
480
481
482
483
484
485
# File 'exceptions.rb', line 479

def initialize(name)
  @name = name

  super <<~EOS
    Tap #{name} with option `--custom-remote` but without a remote URL.
  EOS
end

Instance Attribute Details

#nameString (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.

Returns:



476
477
478
# File 'exceptions.rb', line 476

def name
  @name
end