Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 86 of 86 for initCauses (0.13 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/apache/maven/wagon/wagon-provider-api/1.0-beta-2/wagon-provider-api-1.0-beta-2.jar

    org.apache.maven.wagon; public abstract synchronized class WagonException extends Exception { private Throwable cause; public void WagonException(String, Throwable); public void WagonException(String); public Throwable getCause(); public Throwable initCause(Throwable); } org/apache/maven/wagon/ResourceDoesNotExist.class package org.apache.maven.wagon; public synchronized class ResourceDoesNotExist extends WagonException { public void ResourceDoesNotExist(String); public void ResourceDoesNotExist(String,...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 45.2K bytes
    - Viewed (1)
  2. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/wagon/wagon-provider-api/1.0-beta-2/wagon-provider-api-1.0-beta-2.jar

    org.apache.maven.wagon; public abstract synchronized class WagonException extends Exception { private Throwable cause; public void WagonException(String, Throwable); public void WagonException(String); public Throwable getCause(); public Throwable initCause(Throwable); } org/apache/maven/wagon/ResourceDoesNotExist.class package org.apache.maven.wagon; public synchronized class ResourceDoesNotExist extends WagonException { public void ResourceDoesNotExist(String); public void ResourceDoesNotExist(String,...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 45.2K bytes
    - Viewed (1)
  3. 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)
  4. src/main/java/jcifs/smb/SmbTransportImpl.java

                        }
                        catch ( InterruptedException e ) {
                            InterruptedIOException ie = new InterruptedIOException("Interrupted while acquiring credits");
                            ie.initCause(e);
                            throw ie;
                        }
                    }
                    else {
                        // not enough credits available or too big, split
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
  5. 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)
  6. 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