package username.dict; /** * The exception thrown when we fail to find a key in the * dictionary. * * @author Samuel A. Rebelsky * @version 1.0 of November 2005 */ public class NoSuchKeyException extends Exception { public NoSuchKeyException(String note) { super(note); } // NoSuchKeyException(String) } // class NoSuchKeyException