Executioner  Executioner::NoCommandError

Parent

  • ::NoMethodError

Methods

[Validate]
Generated with RDazzle Newfish 1.4.0

NoCommandError

class NoCommandError < ::NoMethodError

  def initialize(name, *args)
    super("unknown command -- #{name}", name, *args)
  end

end

Public Class Methods

new(*args) click to toggle source
    # File lib/executioner/errors.rb, line 16
16:     def initialize(*args)
17:       super("missing command", *args)
18:     end

Disabled; run with --debug to generate this.