method
handle_exception_with_mailer_class
rails latest stable - Class:
ActionMailer::MailDeliveryJob
handle_exception_with_mailer_class(exception)private
No documentation available.
# File actionmailer/lib/action_mailer/mail_delivery_job.rb, line 40
def handle_exception_with_mailer_class(exception)
if klass = mailer_class
klass.handle_exception exception
else
raise exception
end
end