com.jaregu.database.queries.compiling.QueryCompileException 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.compiling;
import com.jaregu.database.queries.QueryException;
@SuppressWarnings("serial")
public class QueryCompileException extends QueryException {
public QueryCompileException(Throwable cause) {
super(cause);
}
public QueryCompileException(String message) {
super(message);
}
public QueryCompileException(String message, Throwable cause) {
super(message, cause);
}
}