cn.jiangzeyin.util.Assert Maven / Gradle / Ivy
package cn.jiangzeyin.util;
/**
* Created by jiangzeyin on 2017/8/14.
*/
public class Assert {
public static void notNull(Object object, String message) {
if (object == null) {
throw new IllegalArgumentException(message);
}
}
public static void notNull(Object object) {
notNull(object, "[Assertion failed] - this argument is required; it must not be null");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy