com.bettercloud.vault.rest.RestException 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.rest;
public class RestException extends Exception {
public RestException(final String message) {
super(message);
}
public RestException(final Throwable t) {
super(t);
}
}