Exception: Yabbie::NoExecutableError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/yabbie/exceptions.rb

Instance Method Summary collapse

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