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

net.optionfactory.spring.pem.der.DerException Maven / Gradle / Ivy

There is a newer version: 19.3
Show newest version
package net.optionfactory.spring.pem.der;

public class DerException extends RuntimeException {

    public DerException(Throwable cause) {
        super(cause);
    }

    public DerException(String reason) {
        super(reason);
    }

    public static void ensure(boolean test, String message, Object... values) {
        if (test) {
            return;
        }
        throw new DerException(String.format(message, values));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy