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

org.hibernate.hql.ast.InvalidWithClauseException Maven / Gradle / Ivy

package org.hibernate.hql.ast;

import org.hibernate.QueryException;

/**
 * {@inheritDoc}
 *
 * @author Steve Ebersole
 */
public class InvalidWithClauseException extends QuerySyntaxException {
	public InvalidWithClauseException(String message) {
		super( message );
	}

	public InvalidWithClauseException(String message, String queryString) {
		super( message, queryString );
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy