Exception: CompilerSelectionError
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- CompilerSelectionError
- Defined in:
- exceptions.rb
Overview
Raised by CompilerSelector if the formula fails with all of the compilers available on the user’s system.
Instance Method Summary collapse
-
#initialize(formula) ⇒ CompilerSelectionError
constructor
A new instance of CompilerSelectionError.
Constructor Details
#initialize(formula) ⇒ CompilerSelectionError
Returns a new instance of CompilerSelectionError.
614 615 616 617 618 619 |
# File 'exceptions.rb', line 614 def initialize(formula) super <<~EOS #{formula.full_name} cannot be built with any available compilers. #{DevelopmentTools.custom_installation_instructions} EOS end |