graphql.Assert Maven / Gradle / Ivy
package graphql;
public class Assert {
public static void assertNotNull(Object object, String errorMessage) {
if (object != null) return;
throw new AssertException(errorMessage);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy