Class MultipleArtifactsNotFoundException

All Implemented Interfaces:
Serializable

public class MultipleArtifactsNotFoundException extends ArtifactResolutionException
Exception caused when one or more artifacts can not be resolved because they are not found in the local or remote repositories.
See Also:
  • Field Details

    • resolvedArtifacts

      private final List<Artifact> resolvedArtifacts
    • missingArtifacts

      private final List<Artifact> missingArtifacts
  • Constructor Details

  • Method Details

    • getResolvedArtifacts

      public List<Artifact> getResolvedArtifacts()
      artifacts that could be resolved
      Returns:
      List of Artifact
    • getMissingArtifacts

      public List<Artifact> getMissingArtifacts()
      artifacts that could NOT be resolved
      Returns:
      List of Artifact
    • constructMessage

      private static String constructMessage(List<Artifact> artifacts)