public MultipleArtifactsNotFoundException(Artifact originatingArtifact,
List resolvedArtifacts,
List missingArtifacts,
List remoteRepositories) {
super( constructMessage( missingArtifacts ), originatingArtifact, remoteRepositories );
this.resolvedArtifacts = resolvedArtifacts;
this.missingArtifacts = missingArtifacts;
}
Create an instance of the exception with allrequired information. Parameters:
originatingArtifact - the artifact that was being resolved
resolvedArtifacts - artifacts that could be resolved
missingArtifacts - artifacts that could not be resolved
remoteRepositories - remote repositories where the missing artifacts were not found
|