⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sessionexception.java

📁 hibernate 开源框架的代码 jar包希望大家能喜欢
💻 JAVA
字号:
//$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 );	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -