module AfterCommitExceptionNotification::CommittedWithNotification

Public Instance Methods

committed!() click to toggle source
Calls superclass method
# File lib/after_commit_exception_notification.rb, line 17
def committed!
  super
rescue Exception => e # same as active_record/connection_adapters/abstract/database_statements.rb:370
  AfterCommitExceptionNotification.callback(e)
  raise
end