in paimon-web-common/src/main/java/org/apache/paimon/web/common/utils/ParameterValidationUtil.java [28:34]
public static void checkNotNull(Map.Entry<Object, Supplier<String>>... entries) {
for (Map.Entry<Object, Supplier<String>> entry : entries) {
if (entry.getKey() == null) {
throw new IllegalArgumentException(entry.getValue().get() + " can not be null.");
}
}
}