Class: Raygun::RackExceptionInterceptor

Inherits:
Object
  • Object
show all
Defined in:
lib/raygun/rack_exception_interceptor.rb

Instance Method Summary collapse

Constructor Details

#initialize(app) ⇒ RackExceptionInterceptor

Returns a new instance of RackExceptionInterceptor.



4
5
6
# File 'lib/raygun/rack_exception_interceptor.rb', line 4

def initialize(app)
  @app = app
end

Instance Method Details

#call(env) ⇒ Object



8
9
10
11
12
13
# File 'lib/raygun/rack_exception_interceptor.rb', line 8

def call(env)
  response = @app.call(env)
rescue Exception => exception
  Raygun.track_exception(exception, env)
  raise exception
end