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

com.github.antelopeframework.dynamicproperty.util.Assert Maven / Gradle / Ivy

package com.github.antelopeframework.dynamicproperty.util;

public abstract class Assert {

    public static  T argumentNotNull(T argument, String argumentName) {
        if (argument == null) {
            throw new IllegalArgumentException("Argument '" + argumentName + "' must not be null");
        }
        
        return argument;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy