annotationexception.java

来自「hibernate3.2.6源码和jar包」· Java 代码 · 共 25 行

JAVA
25
字号
//$Id: AnnotationException.java 11282 2007-03-14 22:05:59Z epbernard $package org.hibernate;/** * Annotation related exception. * The EJB3 EG will probably set a generic exception. * I'll then use this one. * * @author Emmanuel Bernard */public class AnnotationException extends MappingException {	public AnnotationException(String msg, Throwable root) {		super( msg, root );	}	public AnnotationException(Throwable root) {		super( root );	}	public AnnotationException(String s) {		super( s );	}}

⌨️ 快捷键说明

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