class Geocoder::Lookup::Bing

def check_response_for_errors!(response)

def check_response_for_errors!(response)
  super
  if server_overloaded?(response)
    raise_error(Geocoder::ServiceUnavailable) ||
      Geocoder.log(:warn, "Bing Geocoding API error: Service Unavailable")
  end
end