io.spiffe.helper.exception.RunnerException 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 are errors configuring the cli Runner.
*/
public class RunnerException extends Exception {
public RunnerException(String message) {
super(message);
}
public RunnerException(Throwable cause) {
super(cause);
}
public RunnerException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy