Pass on the original exception

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@30 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2004-11-30 17:11:40 +00:00
parent 2fc559a4ca
commit 38e5fe97be
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ module ActionController #:nodoc:
def perform_action_with_rescue #:nodoc:
begin
perform_action_without_rescue
rescue Exception => exception
rescue => exception
rescue_action(exception)
end
end