class StructuredEventLogger::EventHandlingException
Attributes
exceptions[R]
Public Class Methods
new(scope, name, exceptions)
click to toggle source
Calls superclass method
# File lib/structured_event_logger.rb, line 9 def initialize(scope, name, exceptions) @scope, @name, @exceptions = scope, name, exceptions super("Failed to submit the #{scope}/#{name} event to the following endpoints: #{exceptions.keys.join(", ")}") end