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



/** FileContentException:
    Exception happens when file content error occurs
 */
class FileContentException extends Exception {
  public FileContentException() {
    super("Read illegal content from input data file.");
  }
  
  public FileContentException(String s) {
    super(s);
  }
}
