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

org.hibernate.procedure.ParameterMisuseException Maven / Gradle / Ivy

/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.procedure;

import org.hibernate.HibernateException;

/**
 * Thrown to indicate a misuse of a {@link ParameterRegistration}
 *
 * @author Steve Ebersole
 */
public class ParameterMisuseException extends HibernateException {
	public ParameterMisuseException(String message) {
		super( message );
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy