# File lib_core/rucy/messenger.rb, line 234 def write_parse_error(socket, request, exception) write_error_page(socket, request) { |response| response.status = 400 # Bad Request response.start_body if (request.method != 'HEAD') then response << exception.message << "\n" end } nil end