Newer
Older
RDLProofSystem / src / main / java / parser / exceptions / ParseException.java
package parser.exceptions;

public class ParseException extends RuntimeException {
	protected int line;
	
	public ParseException(int line) {
		super("at line " + (line + 1));
		this.line = line;
	}
}