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

org.simpleflatmapper.util.Asserts Maven / Gradle / Ivy

package org.simpleflatmapper.util;


public class Asserts {
    public static  T requireNonNull(String name, T obj) {
        if (obj == null) {
            throw new NullPointerException(name + " is null");
        }
        return obj;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy