Exception: PhantomGraph::Error::NoExecutable

Inherits:
StandardError
  • Object
show all
Defined in:
lib/phantom_graph/error.rb

Instance Method Summary collapse

Constructor Details

#initializeNoExecutable

Returns a new instance of NoExecutable.



5
6
7
8
9
# File 'lib/phantom_graph/error.rb', line 5

def initialize
  msg = "No phantomjs executable found at #{PhantomGraph.setting.phantomjs}\n"
  msg << ">> Please install phantomjs - http://phantomjs.org/download.html"
  super(msg)
end