package Fibonacci2; /** * Exception to Be Thrown If Numberical Overflow is Detected. * * @author Wayne Eberly */ public class NumericalOverflowException extends Exception { /** * Constructs a NumericalOverflowException with the * specified message. * * @param message The message */ NumericalOverflowException(String message) { super(message); } }