org.hibernate.SessionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of beangle-hibernate-core Show documentation
Show all versions of beangle-hibernate-core Show documentation
Hibernate Orm Core Shade,Support Scala Collection
/*
* 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;
/**
* 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