com.algolia.utils.Parameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of algoliasearch Show documentation
Show all versions of algoliasearch Show documentation
Java client for Algolia Search API
The newest version!
package com.algolia.utils;
import com.algolia.exceptions.AlgoliaRuntimeException;
public class Parameters {
private Parameters() {
// Empty.
}
public static void requireNonNull(Object param, String error) {
if (param == null) {
throw new AlgoliaRuntimeException(error);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy