This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
moviegraph/GraphException.java

9 lines
210 B
Java

/**
* @author Coleman
* This class provides an exception for handling errors within the graph.
*/
public class GraphException extends RuntimeException {
public GraphException ( String s ) {
super(s);
}
}