instance method failsafe_response_body

Ruby on Rails 2.3.18

Since v2.3.18 Last seen in v2.3.18 Private

Signature

failsafe_response_body()

No documentation comment.

Source
# File actionpack/lib/action_controller/failsafe.rb, line 44
      def failsafe_response_body
        error_template_path = "#{self.class.error_file_path}/500.html"
        if File.exist?(error_template_path)
          begin
            result = render_template(error_template_path)
          rescue Exception
            result = nil
          end
        else
          result = nil
        end
        if result.nil?
          result = "<html><body><h1>500 Internal Server Error</h1>" <<
            "If you are the administrator of this website, then please read this web " <<
            "application's log file to find out what went wrong.</body></html>"
        end
        result
      end

Defined in actionpack/lib/action_controller/failsafe.rb line 44 · View on GitHub · Improve this page · Find usages on GitHub

Defined in ActionController::Failsafe

Type at least 2 characters to search.

↑↓ navigate · open · esc close