/**
 * NotInDictionaryException -- to be thrown if client attempts to look
 * up a word in a dictionary that does not contain a definition of it.
 *
 * David Liben-Nowell (CS127, Carleton College)
 * Winter 2006
 *
 */
public class NotInDictionaryException extends Exception { 
    public NotInDictionaryException(String msg) {
	super(msg);
    }
}

