Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8069116

improve fatal error handling in JavaCompiler

    XMLWordPrintable

Details

    • Enhancement
    • Status: Resolved
    • P4
    • Resolution: Fixed
    • None
    • 17
    • tools
    • None
    • b04

    Description

      See the following code in JavaCompiler:


                  for (Closeable c: closeables) {
                      try {
                          c.close();
                      } catch (IOException e) {
                          // When javac uses JDK 7 as a baseline, this code would be
                          // better written to set any/all exceptions from all the
                          // Closeables as suppressed exceptions on the FatalError
                          // that is thrown.
                          JCDiagnostic msg = diagFactory.fragment("fatal.err.cant.close");
                          throw new FatalError(msg, e);
                      }
                  }

      Attachments

        Issue Links

          Activity

            People

              jjg Jonathan Gibbons
              jjg Jonathan Gibbons
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: