package jspexamples; import java.util.*; import java.io.*; /** * For use with the Fibonacci Java Bean. * * @author Jeff Offutt * @version 2.0 * 22-March-2009 */ public class overflowException extends Exception { public overflowException () { super (); } public overflowException (String s) { super (s); } }