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

exception.ParsingException Maven / Gradle / Ivy

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