/********************************************************************* * The YFileFormatException exception indicates that a .ytz file  * does not have the correct file format.  *  * @author Nathan Sprague * @version V1.0, 01/2012 * *********************************************************************/public class NoSuchLineException extends RuntimeException {    /***********************************************************     * Construct a new YFileFormatException.     *      * @param message  Error message.      ***********************************************************/    public NoSuchLineException(String message)    {        super(message);    }}