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

com.github.oxo42.stateless4j.validation.Enforce Maven / Gradle / Ivy

package com.github.oxo42.stateless4j.validation;

public final class Enforce {
    private Enforce() {

    }

    public static  T argumentNotNull(T argument, String description) throws Exception {
        if (argument == null) {
            throw new Exception(description);
        }

        return argument;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy