www.pudn.com > FindTheShortestPath-java.rar > GraphException.java
package shortestpath;
/**
* <p>Title: </p>
*
* <p>Description: </p>
*
* <p>Copyright: Copyright (c) 2007</p>
*
* <p>Company: </p>
*
* @author not attributable
* @version 1.0
*/
public class GraphException extends RuntimeException {
public GraphException(String name) {
super(name);
}
}