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

net.optionfactory.jma.MessageAuthenticationError Maven / Gradle / Ivy

The newest version!
package net.optionfactory.jma;

public class MessageAuthenticationError extends IllegalArgumentException {

    public MessageAuthenticationError(String message) {
        super(message);
    }

    public static void enforce(boolean test, String message) {
        if (test) {
            return;
        }
        throw new MessageAuthenticationError(message);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy