📄 mappingexception.java
字号:
//$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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -