All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cfml.parsing.reporting.CFParseException Maven / Gradle / Ivy

There is a newer version: 2.11.0
Show newest version
package cfml.parsing.reporting;

import org.antlr.runtime.RecognitionException;

public class CFParseException extends RecognitionException {
	
	private RecognitionException rootException;
	private String message;
	
	public CFParseException(String _msg, RecognitionException _rootError) {
		message = _msg;
		rootException = _rootError;
		this.line = _rootError.line;
		this.charPositionInLine = _rootError.charPositionInLine;
	}
	
	@Override
	public String getMessage() {
		return message;
	}
	
	public RecognitionException getSourceException() {
		return rootException;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy