www.pudn.com > FindTheShortestPath-java.rar > GraphException.java


package shortestpath; 
 
/** 
 * 

Title:

* *

Description:

* *

Copyright: Copyright (c) 2007

* *

Company:

* * @author not attributable * @version 1.0 */ public class GraphException extends RuntimeException { public GraphException(String name) { super(name); } }