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

org.hibernate.SessionException Maven / Gradle / Ivy

There is a newer version: 4.2.4
Show newest version
//$Id: SessionException.java 9024 2006-01-11 22:38:24Z steveebersole $
package org.hibernate;

/**
 * Thrown when the user calls a method of a {@link Session} that is in an
 * inappropropriate state for the given call (for example, the the session
 * is closed or disconnected).
 *
 * @author Gavin King
 */
public class SessionException extends HibernateException {

	/**
	 * Constructs a new SessionException with the given message.
	 *
	 * @param message The message indicating the specific problem.
	 */
	public SessionException(String message) {
		super( message );
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy