package rebelsky.compiler.misc; /** * Exceptions that are thrown when the end of a stream is reached. * Can be used for a variety of streams (e.g., character streams, * token streams. * * @author Samuel A. Rebelsky * @version 1.0 of October 2002 */ public class EndOfStream extends Exception { // +--------------+------------------------------------------------- // | Constructors | // +--------------+ /** * Indicate the end of a stream. */ public EndOfStream() { super(); } // EndOfStream() } // class EndOfStream