class Rabbit::EPSCanNotHandleError

Public Class Methods

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