io.quarkus.vault.runtime.client.VaultClientException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-vault Show documentation
Show all versions of quarkus-vault Show documentation
Store your credentials securely in HashiCorp Vault
package io.quarkus.vault.runtime.client;
import io.quarkus.vault.VaultException;
public class VaultClientException extends VaultException {
private int status;
private String body;
public VaultClientException(int status, String body) {
this.status = status;
this.body = body;
}
public int getStatus() {
return status;
}
public String getBody() {
return body;
}
@Override
public String toString() {
return super.toString() + " code=" + status + " body=" + body;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy