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

org.jbakery.arguments.NullArgumentException Maven / Gradle / Ivy

The newest version!
package org.jbakery.arguments;

public class NullArgumentException
	extends RuntimeException
{
	public NullArgumentException(String argumentName)
	{
		super(String.format("Argument \"%s\" may not be null.", argumentName));
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy