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
Public Class Methods
Source
# File lib/new_relic/agent/noticeable_error.rb, line 13 def initialize(class_name, message) @class_name = class_name @message = message end