Class: ActionDispatch::ExceptionWrapper
- Defined in:
- actionpack/lib/action_dispatch/middleware/exception_wrapper.rb
Constant Summary collapse
Instance Attribute Summary collapse
-
#env ⇒ Object
readonly
Returns the value of attribute env.
-
#exception ⇒ Object
readonly
Returns the value of attribute exception.
Instance Method Summary collapse
- #application_trace ⇒ Object
- #framework_trace ⇒ Object
- #full_trace ⇒ Object
-
#initialize(env, exception) ⇒ ExceptionWrapper
constructor
A new instance of ExceptionWrapper.
- #rescue_template ⇒ Object
- #status_code ⇒ Object
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
#env ⇒ Object (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 |
#exception ⇒ Object (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_trace ⇒ Object
40 41 42 |
# File 'actionpack/lib/action_dispatch/middleware/exception_wrapper.rb', line 40 def application_trace clean_backtrace(:silent) end |
#framework_trace ⇒ Object
44 45 46 |
# File 'actionpack/lib/action_dispatch/middleware/exception_wrapper.rb', line 44 def framework_trace clean_backtrace(:noise) end |
#full_trace ⇒ Object
48 49 50 |
# File 'actionpack/lib/action_dispatch/middleware/exception_wrapper.rb', line 48 def full_trace clean_backtrace(:all) end |
#rescue_template ⇒ Object
32 33 34 |
# File 'actionpack/lib/action_dispatch/middleware/exception_wrapper.rb', line 32 def rescue_template @@rescue_templates[@exception.class.name] end |