/* --------------------------------------------------------------------

Copyright (c) 1996 by Christopher R. Waterson. All rights reserved.

Permission to use, copy, modify, and distribute this software
and its documentation for NON-COMMERCIAL purposes and without
fee is hereby granted provided that this copyright notice
appears in all copies.

$Id: GraphException.java 1.1 1996/06/19 01:43:05 waterson Exp $

File:		GraphException.java
Synopsis:	An exception related to a graph
Created:	1996/06/18 waterson
Modified:	$Date: 1996/06/19 01:43:05 $ $Author: waterson $

-------------------------------------------------------------------- */


/**
 * An exception related to a Graph object
 */

public class GraphException extends Exception {
	public GraphException(String text) {
		super(text);
	}
}
