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

com.github.kdvolder.util.Assert Maven / Gradle / Ivy

package com.github.kdvolder.util;

public class Assert {

	public static void isLegalArgument(String name, Object value, boolean test) {
		if (!test) {
			throw new IllegalArgumentException(name+": "+value);
		}
	}

	public static void isLegalState(boolean test) {
		if (!test) {
			throw new IllegalStateException();
		}
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy