class Datadog::Transport::HTTP::Builder::UnknownApiError

Raised when the API key does not match known APIs.

Attributes

key[R]

Public Class Methods

new(key) click to toggle source
# File lib/ddtrace/transport/http/builder.rb, line 119
def initialize(key)
  @key = key
end

Public Instance Methods

message() click to toggle source
# File lib/ddtrace/transport/http/builder.rb, line 123
def message
  "Unknown transport API '#{key}'!"
end