Exception: Yabbie::NoExecutableError
- Inherits:
-
StandardError
- Object
- StandardError
- Yabbie::NoExecutableError
- Defined in:
- lib/yabbie/exceptions.rb
Instance Method Summary collapse
-
#initialize(executable = nil) ⇒ NoExecutableError
constructor
A new instance of NoExecutableError.
Constructor Details
#initialize(executable = nil) ⇒ NoExecutableError
Returns a new instance of NoExecutableError.
3 4 5 6 7 |
# File 'lib/yabbie/exceptions.rb', line 3 def initialize(executable = nil) msg = "No slimerjs executable found at #{executable}\n" msg << ">> Please install slimerjs" super(msg) end |