// File: UnsupportedSyntaxException.java
// Classes: UnsupportedSyntaxException
// Author: Kedar Patankar

/**
General purpose exception used in many traversals to signify many different irregularities/incompatibilities
and things which APStudio doesn't support.
*/

package EDU.neu.ccs.demeter.tools.apstudio.graphedit;

class UnsupportedSyntaxException extends RuntimeException
{
	UnsupportedSyntaxException(String s)
	{
		super(s);
	}
}

