Exception: Suma::Eengine::EengineNotFoundError
- Inherits:
-
EengineError
- Object
- StandardError
- EengineError
- Suma::Eengine::EengineNotFoundError
- Defined in:
- lib/suma/eengine/errors.rb
Overview
Raised when eengine binary is not found in PATH
Instance Method Summary collapse
-
#initialize ⇒ EengineNotFoundError
constructor
A new instance of EengineNotFoundError.
Constructor Details
#initialize ⇒ EengineNotFoundError
Returns a new instance of EengineNotFoundError.
10 11 12 13 14 |
# File 'lib/suma/eengine/errors.rb', line 10 def initialize super("eengine not found in PATH. Install eengine:\n " \ "macOS: https://github.com/expresslang/homebrew-eengine\n " \ "Linux: https://github.com/expresslang/eengine-releases") end |