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

io.github.jzdayz.util.Assert Maven / Gradle / Ivy

There is a newer version: 6.0.0
Show newest version
package io.github.jzdayz.util;

import java.util.Collection;

public abstract class Assert {

    public static void notEmpty(Collection collection,String message){
        if (collection == null || collection.size() == 0){
            throw new IllegalArgumentException(message);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy