class Aws::ECSCredentials::Non200Response
@api private
def initialize(status_code, body = nil)
def initialize(status_code, body = nil) @status_code = status_code @body = body msg = "HTTP #{status_code}" msg += ": #{body}" if body && !body.empty? super(msg) end