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")


499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
# File 'lib/datadog_api_client/api_client.rb', line 499

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.



492
493
494
# File 'lib/datadog_api_client/api_client.rb', line 492

def code
  @code
end

#response_bodyObject (readonly)

Returns the value of attribute response_body.



492
493
494
# File 'lib/datadog_api_client/api_client.rb', line 492

def response_body
  @response_body
end

#response_headersObject (readonly)

Returns the value of attribute response_headers.



492
493
494
# File 'lib/datadog_api_client/api_client.rb', line 492

def response_headers
  @response_headers
end

Instance Method Details

#messageObject



520
521
522
523
524
525
526
527
528
529
530
531
532
# File 'lib/datadog_api_client/api_client.rb', line 520

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



516
517
518
# File 'lib/datadog_api_client/api_client.rb', line 516

def to_s
  message
end