From 2c554488062639ffd2c66a7601b71f88c9fd8e02 Mon Sep 17 00:00:00 2001 From: ohbarye Date: Sun, 16 Oct 2022 11:03:21 +0900 Subject: [PATCH] Remove unused error class The class is introduced by https://github.com/newrelic/newrelic-ruby-agent/commit/f2168ff0d446faa0e43968cfad9561817d2d473f#diff-61a8aeaee4649719c4136512deca7e826560b227c576e18114154a6082311830R47. But it became unused at https://github.com/newrelic/newrelic-ruby-agent/commit/9e1b428460dd954f3037864c7b2309901261e241#diff-918c7f140adbe155d6f5234c69b3373615a0e2bb395ee3339182e229c60f0156L52. --- lib/new_relic/agent.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/new_relic/agent.rb b/lib/new_relic/agent.rb index 8e02786fa4..c1a6e0a082 100644 --- a/lib/new_relic/agent.rb +++ b/lib/new_relic/agent.rb @@ -102,8 +102,6 @@ class UnrecoverableAgentException < ServerConnectionException; end # An error while serializing data for the collector class SerializationError < StandardError; end - class BackgroundLoadingError < StandardError; end - # placeholder name used when we cannot determine a transaction's name UNKNOWN_METRIC = '(unknown)'.freeze