Class: ActionDispatch::ExceptionWrapper

Inherits:
Object
  • Object
show all
Defined in:
actionpack/lib/action_dispatch/middleware/exception_wrapper.rb

Constant Summary collapse

@@rescue_responses =
Hash.new(:internal_server_error)
@@rescue_templates =
Hash.new('diagnostics')

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(env, exception) ⇒ ExceptionWrapper

Returns a new instance of ExceptionWrapper.



27
28
29
30
# File 'actionpack/lib/action_dispatch/middleware/exception_wrapper.rb', line 27

def initialize(env, exception)
  @env = env
  @exception = original_exception(exception)
end

Instance Attribute Details

#envObject (readonly)

Returns the value of attribute env



25
26
27
# File 'actionpack/lib/action_dispatch/middleware/exception_wrapper.rb', line 25

def env
  @env
end

#exceptionObject (readonly)

Returns the value of attribute exception



25
26
27
# File 'actionpack/lib/action_dispatch/middleware/exception_wrapper.rb', line 25

def exception
  @exception
end

Instance Method Details

#application_traceObject



40
41
42
# File 'actionpack/lib/action_dispatch/middleware/exception_wrapper.rb', line 40

def application_trace
  clean_backtrace(:silent)
end

#framework_traceObject



44
45
46
# File 'actionpack/lib/action_dispatch/middleware/exception_wrapper.rb', line 44

def framework_trace
  clean_backtrace(:noise)
end

#full_traceObject



48
49
50
# File 'actionpack/lib/action_dispatch/middleware/exception_wrapper.rb', line 48

def full_trace
  clean_backtrace(:all)
end

#rescue_templateObject



32
33
34
# File 'actionpack/lib/action_dispatch/middleware/exception_wrapper.rb', line 32

def rescue_template
  @@rescue_templates[@exception.class.name]
end

#status_codeObject



36
37
38
# File 'actionpack/lib/action_dispatch/middleware/exception_wrapper.rb', line 36

def status_code
  Rack::Utils.status_code(@@rescue_responses[@exception.class.name])
end