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

io.spiffe.helper.exception.RunnerException 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 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