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

net.linksfield.cube.partnersdk.utils.AssertUtils Maven / Gradle / Ivy

package net.linksfield.cube.partnersdk.utils;

/**
 * @ClassName AssertUtils
 * @Description AssertUtils
 * @Author James.hu
 * @Date 2023/3/21
 **/
public class AssertUtils {
    public static void isTrue(boolean expression, String message) {
        if (!expression) {
            throw new IllegalArgumentException(message);
        }
    }

    public static void notNull(Object object, String message) {
        if (object == null) {
            throw new IllegalArgumentException(message);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy