class CommandList::InvalidCommand
Public Class Methods
new(str)
click to toggle source
# File libs/command_tree.rb, line 515 def initialize(str) @str=str end
Public Instance Methods
message()
click to toggle source
# File libs/command_tree.rb, line 519 def message "Unknown or Invalid Command: #{@str}" end