package rpi.goldsd.graph; /** * The EdgeNotFoundException class represents an exception that * should be thrown when a method fails because a required edge was not found. * * @version 2.0, 3/28/98 * @author David Goldschmidt */ public class EdgeNotFoundException extends RuntimeException { /** * The default constructor simply calls the default constructor * of the parent class RuntimeException. */ public EdgeNotFoundException() { super(); } /** * This constructor calls the corresponding constructor of the * parent class RuntimeException with the String * argument to be displayed. * @param s the String object to be displayed. */ public EdgeNotFoundException( String s ) { super( s ); } }