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