annotationexception.java

来自「Hibernate Annotations Sample」· Java 代码 · 共 25 行

JAVA
25
字号
//$Id: AnnotationException.java 14736 2008-06-04 14:23:42Z hardy.ferentschik $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 + -
显示快捷键?