Sha256: 586541675849e065bcea9fa00e7addbacccc259dc073e33930ff0f6f63e3786e

Contents?: true

Size: 680 Bytes

Versions: 7

Compression:

Stored size: 680 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.

# This is the base class for all errors that we want to record through the
# NewRelic::Agent::ErrorCollector#notice_agent_error API. It provides the
# standard support text at the front of the message, and is used for flagging
# agent errors when checking queue limits.

module NewRelic
  module Agent
    class InternalAgentError < StandardError
      def initialize(msg = nil)
        super("Ruby agent internal error. Please contact support referencing this error.\n #{msg}")
      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/internal_agent_error.rb
newrelic_rpm-8.8.0 lib/new_relic/agent/internal_agent_error.rb
newrelic_rpm-8.7.0 lib/new_relic/agent/internal_agent_error.rb
newrelic_rpm-8.6.0 lib/new_relic/agent/internal_agent_error.rb
newrelic_rpm-8.5.0 lib/new_relic/agent/internal_agent_error.rb
newrelic_rpm-8.4.0 lib/new_relic/agent/internal_agent_error.rb
newrelic_rpm-8.3.0 lib/new_relic/agent/internal_agent_error.rb