ExprParser.ParseError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aadd Show documentation
Show all versions of aadd Show documentation
This project implements Affine Arithmetic Decision Diagrams (AADD) in Java. AADD permit in particular the symbolic execution of Java codes.
The newest version!
package ExprParser;
/**
* This Exceptions is thrown for all errors that are caused in the parsing methods.
* It just writes an error message.
*/
public class ParseError extends Exception {
ParseError(String msg) {
super("Parse Error: " + msg);
}
}