////////////////////////////////////////////////////////////////////////////
//
// File: MapException.java
//
// Purpose: The map is invalid. This is a high-level exception,
// and is best used by passing it the low-level exception
// that triggered it.
//
// Authors:
// txe Travis Emmitt emmitt@virginia.edu
//
// Modifications:
// 16-NOV-1998 txe (v2) Initial creation
//
////////////////////////////////////////////////////////////////////////////
public class MapException extends Exception {
public MapException (String message) {
super ("Invalid Map: " + message);
}
public MapException (Exception e) {
super ("Invalid Map: " + e.getMessage());
}
}
/////////////////////////////////////////////////////////////////////////////