it.twenfir.antlr.exception.AstException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of twenfir-antlr Show documentation
Show all versions of twenfir-antlr Show documentation
Add-ons for the ANTLR parser generator
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);
}
}