Exception: DatadogAPIClient::APIError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/datadog_api_client/api_client.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(arg = nil) ⇒ APIError

Usage examples: APIError.new APIError.new("message") APIError.new(:code => 500, :response_headers => {}, :response_body => "") APIError.new(:code => 404, :message => "Not Found")



548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
# File 'lib/datadog_api_client/api_client.rb', line 548

def initialize(arg = nil)
  if arg.is_a? Hash
    if arg.key?(:message) || arg.key?('message')
      super(arg[:message] || arg['message'])
    else
      super arg
    end

    arg.each do |k, v|
      instance_variable_set "@#{k}", v
    end
  else
    super arg
  end
end

Instance Attribute Details

#codeObject (readonly)

Returns the value of attribute code.



541
542
543
# File 'lib/datadog_api_client/api_client.rb', line 541

def code
  @code
end

#response_bodyObject (readonly)

Returns the value of attribute response_body.



541
542
543
# File 'lib/datadog_api_client/api_client.rb', line 541

def response_body
  @response_body
end

#response_headersObject (readonly)

Returns the value of attribute response_headers.



541
542
543
# File 'lib/datadog_api_client/api_client.rb', line 541

def response_headers
  @response_headers
end

Instance Method Details

#messageObject



569
570
571
572
573
574
575
576
577
578
579
580
581
# File 'lib/datadog_api_client/api_client.rb', line 569

def message
  if @message.nil?
    msg = "Error message: the server returns an error"
  else
    msg = @message
  end

  msg += "\nHTTP status code: #{code}" if code
  msg += "\nResponse headers: #{response_headers}" if response_headers
  msg += "\nResponse body: #{response_body}" if response_body

  msg
end

#to_sObject

Override to_s to display a friendly error message



565
566
567
# File 'lib/datadog_api_client/api_client.rb', line 565

def to_s
  message
end