org.zeromq.Utils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zmq-perf Show documentation
Show all versions of zmq-perf Show documentation
org.zeromq Java ZeroMQ perf
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