1 pnkfelix 1.1.2.1 // EdgeNotPresentException.java, created Wed Jan 13 18:13:13 1999 by pnkfelix
 2 cananian 1.1.2.5 // Copyright (C) 1998 Felix S. Klock II <pnkfelix@mit.edu>
 3 cananian 1.1.2.4 // Licensed under the terms of the GNU GPL; see COPYING for details.
 4 pnkfelix 1.1.2.1 package harpoon.Analysis.GraphColoring;
 5 pnkfelix 1.1.2.1 
 6 pnkfelix 1.1.2.1 /**
 7 pnkfelix 1.1.2.1  * <code>EdgeNotPresentException</code>
 8 pnkfelix 1.1.2.1  * 
 9 cananian 1.1.2.5  * @author  Felix S. Klock II <pnkfelix@mit.edu>
10 cananian 1.2      * @version $Id: EdgeNotPresentException.java,v 1.2 2002/02/25 20:57:17 cananian Exp $
11 pnkfelix 1.1.2.1  */
12 pnkfelix 1.1.2.1 
13 pnkfelix 1.1.2.3 public class EdgeNotPresentException extends RuntimeException {
14 pnkfelix 1.1.2.1     
15 pnkfelix 1.1.2.1     /** Creates a <code>EdgeNotPresentException</code>. */
16 pnkfelix 1.1.2.1     public EdgeNotPresentException() {
17 pnkfelix 1.1.2.1         super();
18 pnkfelix 1.1.2.1     }
19 pnkfelix 1.1.2.1 
20 pnkfelix 1.1.2.1     /** Creates a <code>EdgeNotPresentException</code>. */
21 pnkfelix 1.1.2.1     public EdgeNotPresentException(String s) {
22 pnkfelix 1.1.2.1         super(s);
23 pnkfelix 1.1.2.1     }
24 pnkfelix 1.1.2.1     
25 cananian 1.2     }