📄 cloneexception.java
字号:
package org.jgap.util;
/**
* Exception that occurs during cloning an object.
*
*
* @author Klaus Meffert
* @since 3.1
*/
public class CloneException
extends RuntimeException {
/** String containing the CVS revision. Read out via reflection!*/
final static String CVS_REVISION = "$Revision: 1.1 $";
public CloneException() {
super();
}
public CloneException(Throwable a_throwable) {
super(a_throwable);
}
public CloneException(String a_message) {
super(a_message);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -