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

nl.uu.cs.ape.models.sltlxStruc.SLTLxParsingGrammarException Maven / Gradle / Ivy

Go to download

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);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy