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

📄 callbackexception.java

📁 hibernate 开源框架的代码 jar包希望大家能喜欢
💻 JAVA
字号:
//$Id: CallbackException.java 4242 2004-08-11 09:10:45Z oneovthafew $package org.hibernate;/** * Should be thrown by persistent objects from <tt>Lifecycle</tt> * or <tt>Interceptor</tt> callbacks. * * @see Lifecycle * @see Interceptor * @author Gavin King */public class CallbackException extends HibernateException {	public CallbackException(Exception root) {		super("An exception occurred in a callback", root);	}	public CallbackException(String message) {		super(message);	}	public CallbackException(String message, Exception e) {		super(message, e);	}}

⌨️ 快捷键说明

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