mappingexception.java

来自「用Java实现的23个常用设计模式源代码」· Java 代码 · 共 32 行

JAVA
32
字号
//$Id: MappingException.java,v 1.4 2003/04/25 03:40:29 oneovthafew Exp $package net.sf.hibernate;/** * An exception that usually occurs at configuration time, rather * than runtime, as a result of something screwy in the O-R mappings. *  * @author Gavin King */public class MappingException extends HibernateException {		public MappingException(String msg, Throwable root) {		super( msg, root );	}		public MappingException(Throwable root) {		super(root);	}		public MappingException(String s) {		super(s);	}	}

⌨️ 快捷键说明

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