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



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

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.



543
544
545
# File 'lib/datadog_api_client/api_client.rb', line 543

def code
  @code
end

#response_bodyObject (readonly)

Returns the value of attribute response_body.



543
544
545
# File 'lib/datadog_api_client/api_client.rb', line 543

def response_body
  @response_body
end

#response_headersObject (readonly)

Returns the value of attribute response_headers.



543
544
545
# File 'lib/datadog_api_client/api_client.rb', line 543

def response_headers
  @response_headers
end

Instance Method Details

#messageObject



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

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



567
568
569
# File 'lib/datadog_api_client/api_client.rb', line 567

def to_s
  message
end