# File lib/bundler/friendly_errors.rb, line 62
    def request_issue_report_for(e)
      Bundler.ui.info "--- ERROR REPORT TEMPLATE -------------------------------------------------------\n# Error Report\n\n## Questions\n\nPlease fill out answers to these questions, it'll help us figure out\nwhy things are going wrong.\n\n- **What did you do?**\n\nI ran the command `\#{$PROGRAM_NAME} \#{ARGV.join(\" \")}`\n\n- **What did you expect to happen?**\n\nI expected Bundler to...\n\n- **What happened instead?**\n\nInstead, what happened was...\n\n- **Have you tried any solutions posted on similar issues in our issue tracker, stack overflow, or google?**\n\nI tried...\n\n- **Have you read our issues document, https://github.com/bundler/bundler/blob/master/doc/contributing/ISSUES.md?**\n\n...\n\n## Backtrace\n\n```\n\#{e.class}: \#{e.message}\n\#{e.backtrace && e.backtrace.join(\"\\n          \").chomp}\n```\n\n\#{Bundler::Env.report}\n--- TEMPLATE END ----------------------------------------------------------------\n\n".gsub(/^ {8}/, "")

      Bundler.ui.error "Unfortunately, an unexpected error occurred, and Bundler cannot continue."

      Bundler.ui.warn "\nFirst, try this link to see if there are any existing issue reports for this error:\n\#{issues_url(e)}\n\nIf there aren't any reports for this error yet, please create copy and paste the report template above into a new issue. Don't forget to anonymize any private data! The new issue form is located at:\nhttps://github.com/bundler/bundler/issues/new\n".gsub(/^ {8}/, "")
    end