# File lib/restclient/exceptions.rb, line 86
    def initialize response = nil, initial_response_code = nil
      @response = response
      @initial_response_code = initial_response_code

      # compatibility: this make the exception behave like a Net::HTTPResponse
      response.extend ResponseForException if response
    end