package rebelsky.hw20; /** * Exceptions thrown when we try to compare two objects we * shouldn't be able to compare. * * @author Samuel A. Rebelsky * @version 1.0 of September 2004 */ public class IncomparableException extends Exception { public IncomparableException() { super(); } // IncomparableException public IncomparableException(String note) { super(note); } // IncomparableException } // class IncomparableException