Sha256: 52f5aa8c8d79e386fc36d7eeb85e6ca0e26691c67d76178175a1bfc166eeaf64

Contents?: true

Size: 656 Bytes

Versions: 7

Compression:

Stored size: 656 Bytes

Contents

# encoding: utf-8
# This file is distributed under New Relic's license terms.
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
# frozen_string_literal: true

module NewRelic
  module Agent
    # 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.
    class NoticibleError
      attr_reader :class_name, :message

      def initialize class_name, message
        @class_name = class_name
        @message = message
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
newrelic_rpm-8.9.0 lib/new_relic/agent/noticible_error.rb
newrelic_rpm-8.8.0 lib/new_relic/agent/noticible_error.rb
newrelic_rpm-8.7.0 lib/new_relic/agent/noticible_error.rb
newrelic_rpm-8.6.0 lib/new_relic/agent/noticible_error.rb
newrelic_rpm-8.5.0 lib/new_relic/agent/noticible_error.rb
newrelic_rpm-8.4.0 lib/new_relic/agent/noticible_error.rb
newrelic_rpm-8.3.0 lib/new_relic/agent/noticible_error.rb