class PartyFoul::Processors::Sync
Public Class Methods
handle(exception, env)
click to toggle source
Passes the exception and rack env data to the ExceptionHandler and runs everything synchronously.
@param [Exception, Hash]
# File lib/party_foul/processors/sync.rb, line 8 def self.handle(exception, env) PartyFoul::ExceptionHandler.new(exception, env).run end