com.jaregu.database.queries.QueryException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of queries Show documentation
Show all versions of queries Show documentation
Java based SQL templating project. Store your queries in *.sql files and build queries for execution. Supports simple expressions and conditional clauses and interface proxying for java-sql bridge.
package com.jaregu.database.queries;
/**
* Base class for all of query parser exceptions.
*/
@SuppressWarnings("serial")
public class QueryException extends RuntimeException {
public QueryException(String message) {
super(message);
}
public QueryException(Throwable cause) {
super(cause);
}
public QueryException(String message, Throwable cause) {
super(message, cause);
}
}