class Aws::Xray::CanNotSendAllByteError

Public Class Methods

new(payload_len, sent_len) click to toggle source
Calls superclass method
# File lib/aws/xray/errors.rb, line 25
def initialize(payload_len, sent_len)
  super("Can not send all bytes: expected #{payload_len} but #{sent_len} sent")
end