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
def initialize(env, exception)
  @env = env
  @exception = original_exception(exception)
end
Instance Public methods
application_trace()
# File actionpack/lib/action_dispatch/middleware/exception_wrapper.rb, line 40
def application_trace
  clean_backtrace(:silent)
end
framework_trace()
# File actionpack/lib/action_dispatch/middleware/exception_wrapper.rb, line 44
def framework_trace
  clean_backtrace(:noise)
end
full_trace()
# File actionpack/lib/action_dispatch/middleware/exception_wrapper.rb, line 48
def full_trace
  clean_backtrace(:all)
end
rescue_template()
# File actionpack/lib/action_dispatch/middleware/exception_wrapper.rb, line 32
def rescue_template
  @@rescue_templates[@exception.class.name]
end
status_code()
# File actionpack/lib/action_dispatch/middleware/exception_wrapper.rb, line 36
def status_code
  Rack::Utils.status_code(@@rescue_responses[@exception.class.name])
end