Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for initCauses (0.11 sec)

  1. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                    if (error != null) {
                        ProjectBuildingException e = new ProjectBuildingException(List.of(result));
                        e.initCause(error);
                        throw e;
                    }
    
                    return result;
                } finally {
                    Thread.currentThread().setContextClassLoader(oldContextClassLoader);
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

      private static CancellationException cancellationExceptionWithCause(
          String message, @CheckForNull Throwable cause) {
        CancellationException exception = new CancellationException(message);
        exception.initCause(cause);
        return exception;
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  3. guava/src/com/google/common/util/concurrent/AbstractFuture.java

      private static CancellationException cancellationExceptionWithCause(
          String message, @CheckForNull Throwable cause) {
        CancellationException exception = new CancellationException(message);
        exception.initCause(cause);
        return exception;
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
Back to top