nl.uu.cs.ape.models.sltlxStruc.SLTLxParsingGrammarException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of APE Show documentation
Show all versions of APE Show documentation
APE is a command line tool and an API for the automated exploration of possible computational pipelines (workflows) from large collections of computational tools.
The newest version!
package nl.uu.cs.ape.models.sltlxStruc;
import org.antlr.v4.runtime.misc.ParseCancellationException;
/**
* The {@link SLTLxParsingGrammarException} exception will be thrown if the
* SLTLx formula is not well formatted, i.e., it does not follow the grammar
* rules.
*
* @author Vedran Kasalica
*
*/
public class SLTLxParsingGrammarException extends ParseCancellationException {
public SLTLxParsingGrammarException(int line, int charPositionInLine, String msg) {
super("SLTLx formula parsing error:\nline " + line + ":" + charPositionInLine + " " + msg);
}
}