method
failsafe_response_body
rails latest stable - Class:
ActionController::Failsafe
failsafe_response_body()private
No documentation available.
# 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