Newer
Older
Multi-StageDesignTool / AlgebraicDataflowArchitectureModel / src / parser / exceptions / ParseException.java
Okina-kina on 15 Mar 203 bytes firsr commit
package parser.exceptions;

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