Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for hasCauseAncestry (0.16 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/buildevents/BuildExceptionReporter.java

            details.summary.writeTo(output.withStyle(Failure));
            output.println();
    
            writeFailureDetails(output, details);
        }
    
        private static boolean hasCauseAncestry(Throwable failure, Class<?> type) {
            Throwable cause = failure.getCause();
            while (cause != null) {
                if (hasCause(cause, type)) {
                    return true;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top