io.spiffe.exception.X509ContextException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-spiffe-core Show documentation
Show all versions of java-spiffe-core Show documentation
Core functionality to fetch, process and validate X.509 and JWT SVIDs and Bundles from the Workload API.
package io.spiffe.exception;
/**
* Checked exception thrown when a there was an error retrieving
* or processing an X.509 Context.
*/
public class X509ContextException extends Exception {
public X509ContextException(final String message) {
super(message);
}
public X509ContextException(final String message, final Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy