class Datadog::Transport::HTTP::Builder::UnknownAdapterError

Raised when the identifier cannot be matched to an adapter.

Attributes

type[R]

Public Class Methods

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

Public Instance Methods

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