Exception: PanHandler::NoExecutableError

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

Instance Method Summary collapse

Constructor Details

#initializeNoExecutableError

Returns a new instance of NoExecutableError.



6
7
8
9
10
# File 'lib/pan_handler/pan_handler.rb', line 6

def initialize
  msg  = "No pandoc executable found at #{PanHandler.configuration.pandoc}\n"
  msg << ">> Please install pandoc"
  super(msg)
end