Exception: ReplRunner::UnregisteredCommand
- Inherits:
-
StandardError
- Object
- StandardError
- ReplRunner::UnregisteredCommand
- Defined in:
- lib/repl_runner.rb
Instance Method Summary collapse
-
#initialize(cmd_type) ⇒ UnregisteredCommand
constructor
A new instance of UnregisteredCommand.
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 |