Exception: ActiveSupport::Notifications::InstrumentationSubscriberError

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/active_support/notifications/fanout.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(exceptions) ⇒ InstrumentationSubscriberError

Returns a new instance of InstrumentationSubscriberError.



11
12
13
14
15
# File 'lib/active_support/notifications/fanout.rb', line 11

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

#exceptionsObject (readonly)

Returns the value of attribute exceptions.



9
10
11
# File 'lib/active_support/notifications/fanout.rb', line 9

def exceptions
  @exceptions
end