# File lib/new_relic/okjson.rb, line 494
  def numenc(x)
    if ((x.nan? || x.infinite?) rescue false)
      raise Error, "Numeric cannot be represented: #{x}"
    end
    "#{x}"
  end