com.github.ejahns.IllegalZeroException Maven / Gradle / Ivy
The newest version!
package com.github.ejahns;
/**
* Thrown to indicate that a desired zero was smaller than the first zero of J_0
.
*/
public class IllegalZeroException extends IllegalArgumentException {
/**
* Constructs an IllegalZeroException
with the default message.
*/
public IllegalZeroException() {
super("the specified zero cannot be smaller than the first zero of J_0");
}
}