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

ma.vi.esql.parser.EsqlException Maven / Gradle / Ivy

Go to download

ESQL, SQL enhanced with metadata compiling to various relational databases

There is a newer version: 0.5.1
Show newest version
/*
 * 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);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy