All Downloads are FREE. Search and download functionalities are using the official Maven repository.

graphql.Assert Maven / Gradle / Ivy

There is a newer version: 230521-nf-execution
Show newest version
package graphql;

import java.util.Collection;

public class Assert {


    public static void assertNotNull(Object object, String errorMessage) {
        if (object != null) return;
        throw new AssertException(errorMessage);
    }

    public static void assertNotEmpty(Collection c, String errorMessage) {
        if (c == null || c.isEmpty()) throw new AssertException(errorMessage);
        return;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy