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

cn.coder.struts.util.Assert Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package cn.coder.struts.util;

public class Assert {

	public static void notNull(Object obj, String str) {
		if (obj == null)
			throw new NullPointerException("The " + str + " can not be null");
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy