org.infinispan.cdi.common.util.Contracts Maven / Gradle / Ivy
The newest version!
package org.infinispan.cdi.common.util;
/**
* An helper class providing useful assertion methods.
*
* @author Kevin Pollet <[email protected]> (C) 2011 SERLI
*/
public final class Contracts {
/**
* Disable instantiation.
*/
private Contracts() {
}
/**
* Asserts that the given parameter is not {@code null}.
*
* @param param the parameter to check.
* @param message the exception message used if the parameter to check is {@code null}.
* @throws NullPointerException if the given parameter is {@code null}.
*/
public static void assertNotNull(Object param, String message) {
if (param == null) {
throw new NullPointerException(message);
}
}
}