Exception: DatadogAPIClient::APIError
- Inherits:
-
StandardError
- Object
- StandardError
- DatadogAPIClient::APIError
- Defined in:
- lib/datadog_api_client/api_client.rb
Instance Attribute Summary collapse
-
#code ⇒ Object
readonly
Returns the value of attribute code.
-
#response_body ⇒ Object
readonly
Returns the value of attribute response_body.
-
#response_headers ⇒ Object
readonly
Returns the value of attribute response_headers.
Instance Method Summary collapse
-
#initialize(arg = nil) ⇒ APIError
constructor
Usage examples: APIError.new APIError.new(“message”) APIError.new(:code => 500, :response_headers => {}, :response_body => “”) APIError.new(:code => 404, :message => “Not Found”).
- #message ⇒ Object
-
#to_s ⇒ Object
Override to_s to display a friendly error message.
Constructor Details
#initialize(arg = nil) ⇒ APIError
549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 |
# File 'lib/datadog_api_client/api_client.rb', line 549 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
#code ⇒ Object (readonly)
Returns the value of attribute code.
542 543 544 |
# File 'lib/datadog_api_client/api_client.rb', line 542 def code @code end |
#response_body ⇒ Object (readonly)
Returns the value of attribute response_body.
542 543 544 |
# File 'lib/datadog_api_client/api_client.rb', line 542 def response_body @response_body end |
#response_headers ⇒ Object (readonly)
Returns the value of attribute response_headers.
542 543 544 |
# File 'lib/datadog_api_client/api_client.rb', line 542 def response_headers @response_headers end |
Instance Method Details
#message ⇒ Object
570 571 572 573 574 575 576 577 578 579 580 581 582 |
# File 'lib/datadog_api_client/api_client.rb', line 570 def 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_s ⇒ Object
Override to_s to display a friendly error message
566 567 568 |
# File 'lib/datadog_api_client/api_client.rb', line 566 def to_s end |