package rebelsky.hw20; /** * Exceptions thrown when values are inconsistent (e.g., when two * objects choose different self-orderings). * * @author Samuel A. Rebelsky * @version 1.0 of September 2004 */ public class InconsistentException extends Exception { public InconsistentException() { super(); } // InconsistentException public InconsistentException(String note) { super(note); } // InconsistentException } // class InconsistentException