class Chef::Exceptions::ContentLengthMismatch
Raised when the content length of a download does not match the content length declared in the http response.
Public Class Methods
Source
# File lib/chef/exceptions.rb, line 439 def initialize(response_length, content_length) super <<~EOF Response body length #{response_length} does not match HTTP Content-Length header #{content_length}. This error is most often caused by network issues (proxies, etc) outside of #{ChefUtils::Dist::Infra::CLIENT}. EOF end
Calls superclass method