class NewRelic::Agent::NoticeableError

This class is used for instrumentations that have exceptions or error classes not derived from Ruby’s usual Exception or StandardError or in situations where we do not have such Exception object to work with.

Attributes

class_name[R]
message[R]

Public Class Methods

new(class_name, message) click to toggle source
# File lib/new_relic/agent/noticeable_error.rb, line 13
def initialize(class_name, message)
  @class_name = class_name
  @message = message
end