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

11 lines
222 B
Java

public class GraphException extends RuntimeException
{
public GraphException()
{
} // end default constructor
public GraphException(String s)
{
super(s);
} // end constructor
} // end GraphException