Methods
A
F
N
R
S
Attributes
[R] env
[R] exception
Class Public methods
new(env, exception)
    # File actionpack/lib/action_dispatch/middleware/exception_wrapper.rb, line 27
27:     def initialize(env, exception)
28:       @env = env
29:       @exception = original_exception(exception)
30:     end
Instance Public methods
application_trace()
    # File actionpack/lib/action_dispatch/middleware/exception_wrapper.rb, line 40
40:     def application_trace
41:       clean_backtrace(:silent)
42:     end
framework_trace()
    # File actionpack/lib/action_dispatch/middleware/exception_wrapper.rb, line 44
44:     def framework_trace
45:       clean_backtrace(:noise)
46:     end
full_trace()
    # File actionpack/lib/action_dispatch/middleware/exception_wrapper.rb, line 48
48:     def full_trace
49:       clean_backtrace(:all)
50:     end
rescue_template()
    # File actionpack/lib/action_dispatch/middleware/exception_wrapper.rb, line 32
32:     def rescue_template
33:       @@rescue_templates[@exception.class.name]
34:     end
status_code()
    # File actionpack/lib/action_dispatch/middleware/exception_wrapper.rb, line 36
36:     def status_code
37:       Rack::Utils.status_code(@@rescue_responses[@exception.class.name])
38:     end