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

com.github.leeonky.interpreter.SyntaxException Maven / Gradle / Ivy

The newest version!
package com.github.leeonky.interpreter;

public class SyntaxException extends InterpreterException {

    public SyntaxException(String message, int position) {
        this(message, position, Position.Type.CHAR);
    }

    public SyntaxException(String message, int position, Position.Type type) {
        super(message.trim(), position, type);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy