cn.coder.struts.util.Assert Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of struts Show documentation
Show all versions of struts Show documentation
A simple, light Java WEB + ORM framework.
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");
}
}