?? recoverableexception.java
字號(hào):
//$package org.hibernate.cfg;import org.hibernate.AnnotationException;/** * Should neven be exposed to the client * An exception that wrap an underlying exception whith the hope * subsequent processing will recover from it. * * @author Emmanuel Bernard */public class RecoverableException extends AnnotationException { public RecoverableException(String msg, Throwable root) { super( msg, root ); } public RecoverableException(Throwable root) { super( root ); } public RecoverableException(String s) { super( s ); }}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -