/**
 * @author Peter Barth
 */
@SuppressWarnings("serial")
public class GraphException extends RuntimeException {
	/**
	 * Graph exception with specific text msg
	 * @param msg
	 */
	public GraphException (String msg) { super(msg); }

	/**
	 * Graph exception
	 */
	public GraphException() {};

}
