io.spiffe.helper.exception.KeyStoreHelperException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-spiffe-helper Show documentation
Show all versions of java-spiffe-helper Show documentation
Java SPIFFE Library Helper module to store X.509 SVIDs and Bundles in a Java KeyStore in disk
package io.spiffe.helper.exception;
/**
* Checked exception to be thrown when there is an error creating or initializing a KeyStoreHelper.
*/
public class KeyStoreHelperException extends Exception {
public KeyStoreHelperException(String message) {
super(message);
}
public KeyStoreHelperException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy