class Datadog::Profiling::Pprof::Template::NoProfilingEventConversionError

Error when an unknown event type is given to be converted

Attributes

type[R]

Public Class Methods

new(type) click to toggle source
# File lib/ddtrace/profiling/pprof/template.rb, line 95
def initialize(type)
  @type = type
end

Public Instance Methods

message() click to toggle source
# File lib/ddtrace/profiling/pprof/template.rb, line 99
def message
  "Profiling event type '#{type}' cannot be converted to pprof."
end