?? identifiergenerationexception.java
字號:
//$Id: IdentifierGenerationException.java 3890 2004-06-03 16:31:32Z steveebersole $
package org.hibernate.id;
import org.hibernate.HibernateException;
/**
* Thrown by <tt>IdentifierGenerator</tt> implementation class when
* ID generation fails.
*
* @see IdentifierGenerator
* @author Gavin King
*/
public class IdentifierGenerationException extends HibernateException {
public IdentifierGenerationException(String msg) {
super(msg);
}
public IdentifierGenerationException(String msg, Throwable t) {
super(msg, t);
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -