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

ExprParser.ParseError Maven / Gradle / Ivy

Go to download

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy