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

ExprParser.ExprError 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;

public class ExprError extends Exception {
    ExprError(String msg) {
        super("Error in Expression: "+msg);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy