class Bundler::Thor::UndefinedCommandError

Raised when a command was not found.

def initialize(command, all_commands, namespace)

def initialize(command, all_commands, namespace)
  @command = command
  @all_commands = all_commands
  message = "Could not find command #{command.inspect}"
  message = namespace ? "#{message} in #{namespace.inspect} namespace." : "#{message}."
  super(message)
end