ma.vi.esql.parser.EsqlException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of esql Show documentation
Show all versions of esql Show documentation
ESQL, SQL enhanced with metadata compiling to various relational databases
/*
* Copyright (c) 2020 Vikash Madhow
*/
package ma.vi.esql.parser;
/**
* An exception thrown if any error is detected during parsing, translation
* or execution of an ESQL statement or part thereof.
*
* @author Vikash Madhow ([email protected])
*/
public class EsqlException extends RuntimeException {
public EsqlException(String message) {
super(message);
}
public EsqlException(String message, Throwable cause) {
super(message, cause);
}
}