Sha256: fd1a61b5177e1a77b81c8ab49f6341b7bb27fe67974c5578d36c9139c827c17a

Contents?: true

Size: 294 Bytes

Versions: 5

Compression:

Stored size: 294 Bytes

Contents

module ActionController #:nodoc:
  module Rescue
    extend ActiveSupport::Concern
    include ActiveSupport::Rescuable

    private
      def process_action(*args)
        super
      rescue Exception => exception
        rescue_with_handler(exception) || raise(exception)
      end
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
actionpack-3.0.0.beta4 lib/action_controller/metal/rescue.rb
actionpack-3.0.0.beta3 lib/action_controller/metal/rescue.rb
actionpack-3.0.0.beta2 lib/action_controller/metal/rescue.rb
actionpack-3.0.0.beta lib/action_controller/metal/rescue.rb
halorgium-actionpack-3.0.pre lib/action_controller/metal/rescuable.rb