////////////////////////////////////////////////////////////////////////////
//
// File: MapReadException.java
//
// Purpose: Numerous errors can occur during a map read that should be caught
// in order to stop the execution of the program with an invalid
// map.
//
// Authors:
// smg Steve Geist smg9c@virginia.edu
//
// Modifications:
// 04-DEC-1998 smg Initial creation
//
////////////////////////////////////////////////////////////////////////////
public class MapReadException extends Exception {
public MapReadException () {
super ("Error reading map: Either the map or file name is invalid. The program must be restarted in order to run correctly.");
}
}