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

cn.jiangzeyin.util.Assert Maven / Gradle / Ivy

There is a newer version: 1.2.11
Show newest version
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