Sha256: d172a69abe9ad6690af8bb973545a3eababb604ee600d6e33197e7cd105e7f6f

Contents?: true

Size: 1.2 KB

Versions: 28

Compression:

Stored size: 1.2 KB

Contents

package org.embulk.plugin.maven;

import java.nio.file.Path;

public class MavenRepositoryNotFoundException
        extends Exception {
    public MavenRepositoryNotFoundException(final Path givenPath,
                                            final Throwable cause)
    {
        super("Maven repository specified is not found at \"" + givenPath.toString() + "\".", cause);
    }

    public MavenRepositoryNotFoundException(final Path givenPath,
                                            final Path absolutePath,
                                            final Throwable cause)
    {
        super("Maven repository specified is not found at \"" + givenPath.toString() +
              "\" (\"" + absolutePath.toString() + "\").",
              cause);
    }

    public MavenRepositoryNotFoundException(final String message,
                                            final Path givenPath,
                                            final Path absolutePath,
                                            final Throwable cause)
    {
        super("Maven repository specified is not found at \"" + givenPath.toString() +
              "\" (\"" + absolutePath.toString() + "\"): " + message,
              cause);
    }
}

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
embulk-0.8.29 embulk-core/src/main/java/org/embulk/plugin/maven/MavenRepositoryNotFoundException.java
embulk-0.8.29-java embulk-core/src/main/java/org/embulk/plugin/maven/MavenRepositoryNotFoundException.java
embulk-0.8.28 embulk-core/src/main/java/org/embulk/plugin/maven/MavenRepositoryNotFoundException.java
embulk-0.8.28-java embulk-core/src/main/java/org/embulk/plugin/maven/MavenRepositoryNotFoundException.java
embulk-0.8.27 embulk-core/src/main/java/org/embulk/plugin/maven/MavenRepositoryNotFoundException.java
embulk-0.8.27-java embulk-core/src/main/java/org/embulk/plugin/maven/MavenRepositoryNotFoundException.java
embulk-0.8.26 embulk-core/src/main/java/org/embulk/plugin/maven/MavenRepositoryNotFoundException.java
embulk-0.8.26-java embulk-core/src/main/java/org/embulk/plugin/maven/MavenRepositoryNotFoundException.java