com.deepoove.poi.util.ObjectUtils Maven / Gradle / Ivy
The newest version!
package com.deepoove.poi.util;
public final class ObjectUtils {
public static T requireNonNull(T obj, String message) {
if (obj == null)
throw new NullPointerException(message);
return obj;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy