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;
}
}