method

handle_exception_with_mailer_class

rails latest stable - Class: ActionMailer::DeliveryJob

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v6.1.7.7) is shown here.

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