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

querymethods.springdata.util.Assert Maven / Gradle / Ivy

package querymethods.springdata.util;

public abstract class Assert {

	public static void hasText(String text, String message) {
		if (!StringUtils.hasText(text)) {
			throw new IllegalArgumentException(message);
		}
	}
	
	public static void notNull(Object object, String message) {
		if (object == null) {
			throw new IllegalArgumentException(message);
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy