Sha256: b156f05a874d4b9b62aa7486642011f7b55edea1712394abec901b4ed32e81e4

Contents?: true

Size: 664 Bytes

Versions: 85

Compression:

Stored size: 664 Bytes

Contents

# encoding: utf-8
# This file is distributed under New Relic's license terms.
# See https://github.com/newrelic/rpm/blob/master/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

85 entries across 85 versions & 2 rubygems

Version Path
newrelic_rpm-3.6.8.164 lib/new_relic/agent/internal_agent_error.rb
newrelic_rpm-3.6.7.159 lib/new_relic/agent/internal_agent_error.rb
newrelic_rpm-3.6.7.159.beta lib/new_relic/agent/internal_agent_error.rb
newrelic_rpm-3.6.7.152 lib/new_relic/agent/internal_agent_error.rb
newrelic_rpm-3.6.6.147 lib/new_relic/agent/internal_agent_error.rb