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