org.hibernate.SessionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-core Show documentation
Show all versions of hibernate-core Show documentation
Hibernate's core ORM functionality
The newest version!
/*
* SPDX-License-Identifier: LGPL-2.1-or-later
* Copyright Red Hat Inc. and Hibernate Authors
*/
package org.hibernate;
/**
* Thrown when the user calls a method of a {@link Session} that is
* in an inappropriate state for the given call (for example, the
* session is closed or disconnected).
*
* @author Gavin King
*/
public class SessionException extends HibernateException {
/**
* Constructs a new {@code SessionException} with the given message.
*
* @param message The message indicating the specific problem.
*/
public SessionException(String message) {
super( message );
}
/**
* Constructs a new {@code SessionException} with the given message.
*
* @param message The message indicating the specific problem.
* @param cause An exception which caused this exception to be created.
*/
public SessionException(String message, Throwable cause) {
super( message, cause );
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy