com.bettercloud.vault.VaultException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vault-java-driver Show documentation
Show all versions of vault-java-driver Show documentation
Zero-dependency Java client for HashiCorp's Vault
package com.bettercloud.vault;
public class VaultException extends Exception {
public VaultException(final String message) {
super(message);
}
public VaultException(final Throwable t) {
super(t);
}
}