org.wildfly.channel.ArtifactTransferException Maven / Gradle / Ivy
package org.wildfly.channel;
import java.util.Set;
/**
* Thrown in case of an error during downloading of one or more of required artifacts.
*/
public class ArtifactTransferException extends UnresolvedMavenArtifactException {
public ArtifactTransferException(String localizedMessage,
Throwable cause,
Set unresolvedArtifacts,
Set attemptedRepositories) {
super(localizedMessage, cause, unresolvedArtifacts, attemptedRepositories);
}
public ArtifactTransferException(String message, Set unresolvedArtifacts, Set attemptedRepositories) {
super(message, unresolvedArtifacts, attemptedRepositories);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy