Class: PartyFoul::Middleware

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

Instance Method Summary collapse

Constructor Details

#initialize(app) ⇒ Middleware

Returns a new instance of Middleware.



3
4
5
# File 'lib/party_foul/middleware.rb', line 3

def initialize(app)
  @app = app
end

Instance Method Details

#call(env) ⇒ Object



7
8
9
10
11
12
13
14
# File 'lib/party_foul/middleware.rb', line 7

def call(env)
  @app.call(env)
rescue Exception => captured_exception
  if allow_handling?(captured_exception)
    PartyFoul::ExceptionHandler.handle(captured_exception, env)
  end
  raise captured_exception
end