# File lib/net/yail.rb, line 585
  def handle_numeric(number, fullactor, actor, target, text)
    # All numerics share the same args, and rarely care about anything but
    # text, so let's make it easier by passing a hash instead of a list
    args = {:fullactor => fullactor, :actor => actor, :target => target}
    base_event = "incoming_numeric_#{number}""incoming_numeric_#{number}"
    if Array === @handlers[base_event]
      handle(base_event, text, args)
    else
      # No handler = report and don't worry about it
      report "Unknown raw #{number.to_s} from #{fullactor}: #{text}"
    end
  end