method

failsafe_response

rails latest stable - Class: ActionController::Failsafe

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v2.3.8) is shown here.

failsafe_response(exception)
private

No documentation available.

# File actionpack/lib/action_controller/failsafe.rb, line 37
      def failsafe_response(exception)
        log_failsafe_exception(exception)
        [500, {'Content-Type' => 'text/html'}, [failsafe_response_body]]
      rescue Exception => failsafe_error # Logger or IO errors
        $stderr.puts "Error during failsafe response: #{failsafe_error}"
      end