module RestClient::ResponseForException

Compatibility : make the Response act like a Net::HTTPResponse when needed

Public Instance Methods

method_missing(symbol, *args) click to toggle source
# File lib/restclient/exceptions.rb, line 66
def method_missing symbol, *args
  if net_http_res.respond_to? symbol
    warn "[warning] The response contained in an RestClient::Exception is now a RestClient::Response instead of a Net::HTTPResponse, please update your code"
    net_http_res.send symbol, *args
  else
    super
  end
end