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

xyz.erupt.core.util.EruptAssert Maven / Gradle / Ivy

There is a newer version: 1.12.17
Show newest version
package xyz.erupt.core.util;

/**
 * @author YuePeng
 * date 2021/7/18 00:15
 */
public class EruptAssert {

    public static void notNull(Object[] arr, String message) {
        if (null == arr || arr.length == 0) {
            throw new IllegalArgumentException(message);
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy