class Evostream::Commands::Errors::MissingMandatory

Exception if command have no mandatory parameter

Public Class Methods

new(arg_mandatory, klass) click to toggle source
Calls superclass method
# File lib/evostream/event/commands/error.rb, line 8
def initialize(arg_mandatory, klass)
  super "Parameter missing(s) #{arg_mandatory} in #{klass}"
end