- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getErrorArtifactExceptions (0.14 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultResolutionErrorHandler.java
throw result.getVersionRangeViolation(0); } // Transfer Error if (result.hasErrorArtifactExceptions()) { throw result.getErrorArtifactExceptions().get(0); } if (result.hasMissingArtifacts()) { throw new MultipleArtifactsNotFoundException( request.getArtifact(),
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.7K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/MetadataResolutionResult.java
exceptions = initList(exceptions); exceptions.add(e); return this; } public List<ArtifactResolutionException> getErrorArtifactExceptions() { if (errorArtifactExceptions == null) { return Collections.emptyList(); } return Collections.unmodifiableList(errorArtifactExceptions); }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 9.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionResult.java
errorArtifactExceptions.add(e); exceptions = initList(exceptions); exceptions.add(e); return this; } public List<ArtifactResolutionException> getErrorArtifactExceptions() { if (errorArtifactExceptions == null) { return Collections.emptyList(); } return Collections.unmodifiableList(errorArtifactExceptions); }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 10K bytes - Viewed (0)