Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for tryExtractMultiCauses (1.29 sec)

  1. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/ExceptionPlaceholder.java

            if (throwable instanceof MultiCauseException) {
                return ((MultiCauseException) throwable).getCauses();
            } else {
                List<? extends Throwable> causes = tryExtractMultiCauses(throwable);
                if (causes != null) {
                    return causes;
                }
                Throwable causeTmp;
                try {
                    causeTmp = throwable.getCause();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top