Exception: ReplRunner::UnregisteredCommand

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

Instance Method Summary collapse

Constructor Details

#initialize(cmd_type) ⇒ UnregisteredCommand

Returns a new instance of UnregisteredCommand.



20
21
22
23
# File 'lib/repl_runner.rb', line 20

def initialize(cmd_type)
  msg = "Cannot find registered command type: #{cmd_type.inspect}"
  super(msg)
end