All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.spiffe.helper.exception.KeyStoreHelperException Maven / Gradle / Ivy

Go to download

Java SPIFFE Library Helper module to store X.509 SVIDs and Bundles in a Java KeyStore in disk

There is a newer version: 0.8.11
Show newest version
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