Exception: BottleFormulaUnavailableError
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- BottleFormulaUnavailableError
- Defined in:
- exceptions.rb
Overview
Raised when a bottle does not contain a formula file.
Instance Method Summary collapse
-
#initialize(bottle_path, formula_path) ⇒ BottleFormulaUnavailableError
constructor
A new instance of BottleFormulaUnavailableError.
Constructor Details
#initialize(bottle_path, formula_path) ⇒ BottleFormulaUnavailableError
Returns a new instance of BottleFormulaUnavailableError.
758 759 760 761 762 763 764 |
# File 'exceptions.rb', line 758 def initialize(bottle_path, formula_path) super <<~EOS This bottle does not contain the formula file: #{bottle_path} #{formula_path} EOS end |