class Net::HTTP::Pipeline::PipelineError

Raised when the server appears to not support pipelining connections

Public Class Methods

new(requests, responses) click to toggle source

Creates a new PipelineError with 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 Net::HTTP::Pipeline::Error.new
# File lib/net/http/pipeline.rb, line 105
def initialize requests, responses
  super 'pipeline connections are not supported', requests, responses
end