class Rabbit::DiaCanNotHandleError

Public Class Methods

new(command, tried_commands) click to toggle source
# File lib/rabbit/error.rb, line 57
def initialize(command, tried_commands)
  format = _("tried dia commands: %s")
  additional_info = format % tried_commands.inspect
  super("Dia", command, additional_info)
end