def show_support_options_for_installer_bug(e)
begin
line
@stderr.puts "*** EXCEPTION: #{e} (#{e.class})\n " +
e.backtrace.join("\n ")
new_screen
puts '<red>Oops, something went wrong :-(</red>'
puts
puts "We're sorry, but it looks like this installer ran into an unexpected problem.\n" +
"Please visit the following website for support. We'll do our best to help you.\n\n" +
" <b>#{SUPPORT_URL}</b>\n\n" +
"When submitting a support inquiry, please copy and paste the entire installer\n" +
"output."
rescue Exception => e2
raise e
end
end