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

ch.sourcepond.maven.release.reactor.UnresolvedSnapshotDependencyException Maven / Gradle / Ivy

package ch.sourcepond.maven.release.reactor;

@SuppressWarnings("serial")
public class UnresolvedSnapshotDependencyException extends ReactorException {
	public final String groupId;
	public final String artifactId;

	public UnresolvedSnapshotDependencyException(final String groupId, final String artifactId) {
		super("Could not find %s:%s", groupId, artifactId);
		this.groupId = groupId;
		this.artifactId = artifactId;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy