/* Research Project: Graphical Database for Category Theory J. Bradbury, Dr. R. Rosebrugh, I. Rutherford Mount Allison University 2001 File: ParseError.java (author: Larry Barowski, Auburn University, 5/3/96) Description: A parse error Exception. */ //Import statement import java.lang.Exception; public class ParseError extends Exception { public ParseError(String string) { super(string); } }