com.github.nagyesta.lowkeyvault.http.management.LowkeyVaultException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lowkey-vault-client Show documentation
Show all versions of lowkey-vault-client Show documentation
HTTP Client provider for Lowkey Vault tests.
The newest version!
package com.github.nagyesta.lowkeyvault.http.management;
public class LowkeyVaultException extends RuntimeException {
public LowkeyVaultException(final String message) {
super(message);
}
public LowkeyVaultException(final String message, final Throwable cause) {
super(message, cause);
}
}