Class MultipleArtifactsNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.maven.artifact.resolver.AbstractArtifactResolutionException
-
- org.apache.maven.artifact.resolver.ArtifactResolutionException
-
- org.apache.maven.artifact.resolver.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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MultipleArtifactsNotFoundException(Artifact originatingArtifact, List missingArtifacts, List remoteRepositories)Deprecated.MultipleArtifactsNotFoundException(Artifact originatingArtifact, List resolvedArtifacts, List missingArtifacts, List remoteRepositories)Create an instance of the exception with allrequired information.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ListgetMissingArtifacts()artifacts that could NOT be resolvedListgetResolvedArtifacts()artifacts that could be resolved-
Methods inherited from class org.apache.maven.artifact.resolver.AbstractArtifactResolutionException
constructArtifactPath, constructMissingArtifactMessage, getArtifact, getArtifactId, getArtifactPath, getClassifier, getGroupId, getOriginalMessage, getPath, getRemoteRepositories, getType, getVersion
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
MultipleArtifactsNotFoundException
public MultipleArtifactsNotFoundException(Artifact originatingArtifact, List missingArtifacts, List remoteRepositories)
Deprecated.
-
MultipleArtifactsNotFoundException
public MultipleArtifactsNotFoundException(Artifact originatingArtifact, List resolvedArtifacts, List missingArtifacts, List remoteRepositories)
Create an instance of the exception with allrequired information.- Parameters:
originatingArtifact- the artifact that was being resolvedresolvedArtifacts- artifacts that could be resolvedmissingArtifacts- artifacts that could not be resolvedremoteRepositories- remote repositories where the missing artifacts were not found
-
-