class Net::HTTP::Pipeline::Error
Pipeline error class
Attributes
requests[R]
Remaining requests that have not been sent to the HTTP server
responses[R]
Retrieved responses up to the error point
Public Class Methods
new(message, requests, responses)
click to toggle source
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.
Calls superclass method
# File lib/net/http/pipeline.rb, line 59 def initialize message, requests, responses super message @requests = requests @responses = responses end