Sha256: 06a61eb750728d6fa107f069fef1e0ac4ac77c2d78e205f3b990b93bb8f916ae
Contents?: true
Size: 921 Bytes
Versions: 28
Compression:
Stored size: 921 Bytes
Contents
package org.embulk.plugin.maven; import java.nio.file.Path; public class MavenArtifactNotFoundException extends Exception { public MavenArtifactNotFoundException(final String groupId, final String artifactId, final String classifier, final String version, final Path givenRepositoryPath, final Path absoluteRepositoryPath, final Throwable cause) { super("Maven artifact \"" + groupId + ":" + artifactId + ":" + version + (classifier != null ? (":" + classifier) : "") + "\" is not found: at \"" + givenRepositoryPath.toString() + "\" (\"" + absoluteRepositoryPath.toString() + "\").", cause); } }
Version data entries
28 entries across 28 versions & 1 rubygems