private Method

Rescue.perform_action_with_rescue(

There's no documentation for this item.

Source Code

# File action_controller/rescue.rb, line 198
def perform_action_with_rescue #:nodoc:
  perform_action_without_rescue
rescue Exception => exception  # errors from action performed
  return if rescue_action_with_handler(exception)

  rescue_action(exception)
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.