Exception: ActiveSupport::Notifications::InstrumentationSubscriberError
Relationships & Source Files | |
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
self,
RuntimeError
|
|
Instance Chain:
self,
RuntimeError
|
|
Inherits: |
RuntimeError
|
Defined in: | activesupport/lib/active_support/notifications/fanout.rb |
Class Method Summary
Instance Attribute Summary
- #exceptions readonly
Constructor Details
.new(exceptions) ⇒ InstrumentationSubscriberError
# File 'activesupport/lib/active_support/notifications/fanout.rb', line 13
def initialize(exceptions) @exceptions = exceptions exception_class_names = exceptions.map { |e| e.class.name } super "Exception(s) occurred within instrumentation subscribers: #{exception_class_names.join(', ')}" end
Instance Attribute Details
#exceptions (readonly)
[ GitHub ]# File 'activesupport/lib/active_support/notifications/fanout.rb', line 11
attr_reader :exceptions