Changeset 7618
- Timestamp:
- 09/24/07 19:56:11 (1 year ago)
- Files:
-
- trunk/actionpack/lib/action_controller/rescue.rb (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/lib/action_controller/rescue.rb
r7597 r7618 90 90 erase_results if performed? 91 91 92 return if rescue_action_with_handler(exception)93 94 92 # Let the exception alter the response if it wants. 95 93 # For example, MethodNotAllowed sets the Allow header. … … 177 175 perform_action_without_rescue 178 176 rescue Exception => exception # errors from action performed 177 return if rescue_action_with_handler(exception) 178 179 179 rescue_action(exception) 180 180 end