Sha256: 6cebfa2b8fe15996d025d4076cefc3cc325ad681304ced1e04cce5816b10dac8
Contents?: true
Size: 1.03 KB
Versions: 42
Compression:
Stored size: 1.03 KB
Contents
module OneApm # An exception that is thrown by the server if the agent license is invalid. class LicenseException < StandardError; end # An exception that forces an agent to stop reporting until its mongrel is restarted. class ForceDisconnectException < StandardError; end # An exception that forces an agent to restart. class ForceRestartException < StandardError; end # Used to blow out of a periodic task without logging a an error, such as for routine # failures. class ServerConnectionException < StandardError; end # When a post is either too large or poorly formatted we should # drop it and not try to resend class UnrecoverableServerException < ServerConnectionException; end # An unrecoverable client-side error that prevents the agent from continuing class UnrecoverableAgentException < ServerConnectionException; end # An error while serializing data for the collector class SerializationError < StandardError; end class BackgroundLoadingError < StandardError; end end
Version data entries
42 entries across 42 versions & 1 rubygems