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

org.znerd.util.Preconditions Maven / Gradle / Ivy

package org.znerd.util;

public class Preconditions {
    public static void checkArgument(boolean cond, String errorMessage) throws IllegalArgumentException {
        if (cond) {
            throw new IllegalArgumentException(errorMessage);
        }
    }
    
    private Preconditions() {
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy