Exception: NoSuchKegError 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 keg doesn't exist.
Instance Attribute Summary collapse
- #name ⇒ Object readonly private
- #tap ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(name, tap: nil) ⇒ NoSuchKegError
constructor
private
A new instance of NoSuchKegError.
Constructor Details
#initialize(name, tap: nil) ⇒ NoSuchKegError
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 NoSuchKegError.
58 59 60 61 62 63 64 |
# File 'exceptions.rb', line 58 def initialize(name, tap: nil) @name = name @tap = tap = "No such keg: #{HOMEBREW_CELLAR}/#{name}" += " from tap #{tap}" if tap super 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.
56 57 58 |
# File 'exceptions.rb', line 56 def name @name end |
#tap ⇒ 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.
56 57 58 |
# File 'exceptions.rb', line 56 def tap @tap end |