exception.ParsingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsyntaxtree Show documentation
Show all versions of jsyntaxtree Show documentation
Syntax tree representation of the JASS language
The newest version!
package exception;
/**
* Thrown if the AST Reading code fails to deserialize the JASS code
*/
public final class ParsingException extends RuntimeException {
public ParsingException(Exception e) {
super(e);
}
public ParsingException(String message) {
super(message);
}
public ParsingException() {
super("");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy