/* FileFormatException.java
 * Author: David Wanqian Liu
 * Date: Dec 20, 1995
 */



/** FileFormatException:
    Exception happens when file parsing error occurs
 */
class FileFormatException extends Exception {
  public FileFormatException() {
    super("Illegal file format, unable to parse input data file.");
  }
  
  public FileFormatException(String s) {
    super(s);
  }
}
