package graph; /** * Runtime exception thrown when the user attempts to look up * a vertex in a KeyedDigraph by a nonexistent key. */ public class NoSuchVertexException extends RuntimeException { public NoSuchVertexException() { } public NoSuchVertexException(String err) { super(err); } }