/*
 *  Team 1
 *  CS575: Software Design
 *  Project Phase I
 *  KWICException.java
 *  (Lisa Anthony)
 *
 *  Class info: Intended as the general purpose exception class for
 *  the KWIC program.
 */


public class KWICException extends Exception {

    // constructors
    KWICException (String s) {
	super (s);
    }
    

} // end of class KWICException
