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

org.zeromq.Utils Maven / Gradle / Ivy

The newest version!
package org.zeromq;

public class Utils
{
    private Utils()
    {
    }

    public static void checkNotNull(Object obj)
    {
        if (obj == null) {
            throw new IllegalArgumentException("Argument must not be null");
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy