org.codehaus.httpcache4j.util.Preconditions Maven / Gradle / Ivy
The newest version!
package org.codehaus.httpcache4j.util;
/**
* Created by maedhros on 29/06/15.
*/
public class Preconditions {
public static void checkArgument(boolean expr, String msg) {
if (!expr) throw new IllegalArgumentException(msg);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy