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

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

package org.wildfly.channel;

import java.util.Set;

/**
 * Thrown if one or more of required artifacts are not found in specified Channels
 */
public class NoStreamFoundException extends UnresolvedMavenArtifactException {

    public NoStreamFoundException(String localizedMessage,
                                  Throwable cause,
                                  Set unresolvedArtifacts,
                                  Set attemptedRepositories) {
        super(localizedMessage, cause, unresolvedArtifacts, attemptedRepositories);
    }

    public NoStreamFoundException(String message, Set unresolvedArtifacts, Set attemptedRepositories) {
        super(message, unresolvedArtifacts, attemptedRepositories);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy