Pipeline error class
Remaining requests that have not been sent to the HTTP server
Retrieved responses up to the error point
Creates a new Error with message
, a
list of requests
that have not been sent to the server and a
list of responses
that have been retrieved from the server.
# File lib/net/http/pipeline.rb, line 59 def initialize message, requests, responses super message @requests = requests @responses = responses end