All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.wildfly.channel.ArtifactTransferException Maven / Gradle / Ivy

There is a newer version: 1.2.2.Final
Show newest version
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