module ActionMailer::Rescuable

def handle_exception(exception) # :nodoc:

:nodoc:
def handle_exception(exception) # :nodoc:
  rescue_with_handler(exception) || raise(exception)
end

def handle_exceptions # :nodoc:

:nodoc:
def handle_exceptions # :nodoc:
  yield
rescue => exception
  rescue_with_handler(exception) || raise
end

def process(...)

def process(...)
  handle_exceptions do
    super
  end
end