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

org.springframework.social.partnercenter.api.validation.Assertion Maven / Gradle / Ivy

package org.springframework.social.partnercenter.api.validation;

import static java.text.MessageFormat.format;

import org.springframework.util.Assert;

public class Assertion {
	public static void notNull(Object param, String argName) {
		Assert.notNull(param, format("[Assertion failed] - {0} argument must not be null", argName));
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy