In Utopia::Exceptions::Handler the call function has rescue Exception => exception.
In Utopia::Exceptions::Mailer the call function has rescue => exception.
Why the difference? I found a case where incorrect ruby in a view would cause Handler to fire but not Mailer.
In
Utopia::Exceptions::Handlerthecallfunction hasrescue Exception => exception.In
Utopia::Exceptions::Mailerthecallfunction hasrescue => exception.Why the difference? I found a case where incorrect ruby in a view would cause Handler to fire but not Mailer.