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

io.spiffe.exception.X509BundleException Maven / Gradle / Ivy

Go to download

Core functionality to fetch, process and validate X.509 and JWT SVIDs and Bundles from the Workload API.

There is a newer version: 0.8.11
Show newest version
package io.spiffe.exception;

/**
 * Checked exception thrown when there is an error parsing
 * the components of an X.509 Bundle.
 */
public class X509BundleException extends Exception {
    public X509BundleException(final String message) {
        super(message);
    }

    public X509BundleException(final String message, final Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy