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

com.jaregu.database.queries.building.QueryBuildException Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 1.4.1
Show newest version
package com.jaregu.database.queries.building;

import com.jaregu.database.queries.QueryException;

/**
 * Exception thrown when there is problems with {@link Query} building
 */
@SuppressWarnings("serial")
public class QueryBuildException extends QueryException {

	public QueryBuildException(Throwable cause) {
		super(cause);
	}

	public QueryBuildException(String message) {
		super(message);
	}

	public QueryBuildException(String message, Throwable cause) {
		super(message, cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy