org.jbakery.arguments.NullArgumentException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jbakery-arguments Show documentation
Show all versions of jbakery-arguments Show documentation
Argument-checking facilities.
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));
}
}