Sha256: f8c340ea796361e08d243e67a85a8e34e25ddb095e0b14fc100c520afe2d1df7
Contents?: true
Size: 692 Bytes
Versions: 34
Compression:
Stored size: 692 Bytes
Contents
# 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 # 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
34 entries across 34 versions & 1 rubygems