Example usage for org.eclipse.jgit.errors UnsupportedCredentialItem subclass-usage

List of usage examples for org.eclipse.jgit.errors UnsupportedCredentialItem subclass-usage

Introduction

In this page you can find the example usage for org.eclipse.jgit.errors UnsupportedCredentialItem subclass-usage.

Usage

From source file jetbrains.buildServer.buildTriggers.vcs.git.WrongPassphraseException.java

public class WrongPassphraseException extends UnsupportedCredentialItem {

    public WrongPassphraseException(@NotNull URIish uri) {
        super(uri, "Wrong passphrase for selected SSH key");
    }
}