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

dev.aurelium.slate.util.Validate Maven / Gradle / Ivy

The newest version!
package dev.aurelium.slate.util;

public class Validate {

    public static void notNull(Object object) {
        notNull(object, "Object " + object.toString() + " cannot be null");
    }

    public static void notNull(Object object, String message) {
        if (object == null) {
            throw new IllegalArgumentException(message);
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy