Class: PartyFoul::Processors::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/party_foul/processors/base.rb

Direct Known Subclasses

DelayedJob, Resque, Sidekiq, Sync

Class Method Summary collapse

Class Method Details

.handle(exception, env) ⇒ NotImplementedError

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.

Parameters:

  • (Exception, Hash)

Returns:

  • (NotImplementedError)

Raises:

  • (NotImplementedError)


8
9
10
# File 'lib/party_foul/processors/base.rb', line 8

def self.handle(exception, env)
  raise NotImplementedError
end