org.jbakery.arguments.ZeroArgumentException 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 ZeroArgumentException
extends RuntimeException
{
public ZeroArgumentException(String argumentName)
{
super(String.format("Argument \"%s\" may not be zero.", argumentName));
}
}