package JSPExamples; import java.util.*; import java.io.*; // Jeff Offutt's OverflowException class // For use with the Fibonacci Java Bean public class FiboOverflowException extends Exception { public FiboOverflowException () { super (); } public FiboOverflowException (String s) { super (s); } }