termexception.java
来自「该原代码是实现机器学习中条件随机场模型的Java代码」· Java 代码 · 共 26 行
JAVA
26 行
/**
*
*/
package lcrf.logic;
/**
* @author bgutmann
*
*/
public class TermException extends Exception {
/**
* random generated UID
*/
private static final long serialVersionUID = 3546360634758411828L;
int type;
public static final int NOSUBTERMSALLOWED = 0;
public TermException(int type) {
super();
this.type = type;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?