Exception: Cask::CaskQuarantineError Private
- Defined in:
- cask/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.
Error during quarantining of a file.
Direct Known Subclasses
Instance Attribute Summary collapse
- #path ⇒ Object readonly private
- #reason ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(path, reason) ⇒ CaskQuarantineError
constructor
private
A new instance of CaskQuarantineError.
Constructor Details
#initialize(path, reason) ⇒ CaskQuarantineError
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 CaskQuarantineError.
187 188 189 190 191 192 |
# File 'cask/exceptions.rb', line 187 def initialize(path, reason) super() @path = path @reason = reason end |
Instance Attribute Details
#path ⇒ 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.
185 186 187 |
# File 'cask/exceptions.rb', line 185 def path @path end |
#reason ⇒ 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.
185 186 187 |
# File 'cask/exceptions.rb', line 185 def reason @reason end |