/**
 * An exception for use with comparators.  If two objects cannot be compared,
 * this exception is thrown.  Right now, all it does is extend Exception.
 *
 * @author Chris Kern
 * @author Erin Nichols
 * @author Joe Simonson
 * @version 0.1 of October 1999
 */

public class IncomparableException
    extends Exception {

}//class IncomparableException

