Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CompilationFatalException (0.2 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CompilationFatalException.java

    /**
     * Indicates a fatal error during compilation. Gradle will not try to recover output files from a previous compilation.
     */
    public class CompilationFatalException extends RuntimeException implements CompilationFailedIndicator {
    
        public CompilationFatalException(Throwable cause) {
            super("Unrecoverable compilation error: " + cause.getMessage(), cause);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/ApiGroovyCompiler.java

                    // This indicates a compiler bug and not a user error,
                    // so we cannot recover from such error: we need to force full recompilation.
                    throw new CompilationFatalException(e);
                }
    
                System.err.println(e.getMessage());
                // Explicit flush, System.err is an auto-flushing PrintWriter unless it is replaced.
                System.err.flush();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.7K bytes
    - Viewed (0)
Back to top