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

📄 assertionfailure.java

📁 人力资源管理系统主要包括:人员管理、招聘管理、培训管理、奖惩管理和薪金管理五大管理模块。
💻 JAVA
字号:
//$Id: AssertionFailure.java,v 1.4.2.4 2003/12/06 02:41:54 oneovthafew Exp $package net.sf.hibernate;import net.sf.hibernate.exception.NestableRuntimeException;import org.apache.commons.logging.Log;import org.apache.commons.logging.LogFactory;/** * Indicates failure of an assertion: a possible bug in Hibernate. * * @author Gavin King */public class AssertionFailure extends NestableRuntimeException {		private static final Log log = LogFactory.getLog(AssertionFailure.class);		private static final String MESSAGE = "an assertion failure occured (this may indicate a bug in Hibernate, but is more likely due to unsafe use of the session)";	public AssertionFailure(String s) {		super(s);		log.error(MESSAGE, this);	}		public AssertionFailure(String s, Throwable t) {		super(s, t);		log.error(MESSAGE, t);	}	}

⌨️ 快捷键说明

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