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

org.snt.inmemantlr.exceptions.AstProcessorException Maven / Gradle / Ivy

package org.snt.inmemantlr.exceptions;

/**
 * this exception is something is going wrong while processing an AST
 */
public class AstProcessorException extends Exception {
    private static final long serialVersionUID = -3663250114314629370L;

    /**
     * constructor
     *
     * @param msg exception message
     */
    public AstProcessorException(String msg) {
        super(msg);
    }

    /**
     * constructor
     *
     * @param msg   exception message
     * @param cause the cause
     */
    public AstProcessorException(String msg, Throwable cause) {
        super(msg, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy