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

it.twenfir.antlr.exception.AstException Maven / Gradle / Ivy

There is a newer version: 0.1.3
Show newest version
package it.twenfir.antlr.exception;

/**
 * Exception thrown on AST building errors.
 */
public class AstException extends RuntimeException {

	private static final long serialVersionUID = 1L;

	public AstException(String message) {
		super(message);
	}

	public AstException(String message, Throwable cause) {
		super(message, cause);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy