class Seahorse::Client::NetHttp::Handler::TruncatedBodyError

@api private

Public Class Methods

new(bytes_expected, bytes_received) click to toggle source
Calls superclass method
# File lib/seahorse/client/net_http/handler.rb, line 11
def initialize(bytes_expected, bytes_received)
  msg = "http response body truncated, expected #{bytes_expected} "
  msg << "bytes, received #{bytes_received} bytes"
  super(msg)
end