diff options
| author | twinturbo <me@broadcastingadam.com> | 2012-04-28 22:32:18 -0700 | 
|---|---|---|
| committer | twinturbo <me@broadcastingadam.com> | 2012-04-28 22:32:18 -0700 | 
| commit | 2c136ae0543ea53dcb3a3ef9372b216b54d66172 (patch) | |
| tree | 71d4bb802e217ae4fbb5b20c9d3ac5afbb77707e | |
| parent | 03c051eb54c5042177ca75a7b2534c1a5cd513e1 (diff) | |
| download | rails-2c136ae0543ea53dcb3a3ef9372b216b54d66172.tar.gz rails-2c136ae0543ea53dcb3a3ef9372b216b54d66172.tar.bz2 rails-2c136ae0543ea53dcb3a3ef9372b216b54d66172.zip | |
Document exception handling inside resce_from handlers
| -rw-r--r-- | activesupport/lib/active_support/rescuable.rb | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/activesupport/lib/active_support/rescuable.rb b/activesupport/lib/active_support/rescuable.rb index 85e84bc203..7aecdd11d3 100644 --- a/activesupport/lib/active_support/rescuable.rb +++ b/activesupport/lib/active_support/rescuable.rb @@ -48,6 +48,7 @@ module ActiveSupport        #       end        #   end        # +      # Exceptions raised inside exception handlers are not propagated up.        def rescue_from(*klasses, &block)          options = klasses.extract_options! | 
