class PartyFoul::Processors::Base
Public Class Methods
handle(exception, env)
click to toggle source
Passes the exception and rack env data to the ExceptionHandler and runs everything synchronously. This base class method must be overriden by any inheriting class.
@param [Exception, Hash] @return [NotImplementedError]
# File lib/party_foul/processors/base.rb, line 8 def self.handle(exception, env) raise NotImplementedError end