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

org.antlr.runtime.MismatchedTreeNodeException Maven / Gradle / Ivy

There is a newer version: 5.0.84
Show newest version
package org.antlr.runtime;

import org.antlr.runtime.tree.TreeNodeStream;
import org.antlr.runtime.tree.Tree;

/**
 */
public class MismatchedTreeNodeException extends RecognitionException {
	public int expecting;

	public MismatchedTreeNodeException() {
	}

	public MismatchedTreeNodeException(int expecting, TreeNodeStream input) {
		super(input);
		this.expecting = expecting;
	}

	public String toString() {
		return "MismatchedTreeNodeException("+getUnexpectedType()+"!="+expecting+")";
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy