rulealreadyexistsexception.java

来自「Expert system to help poker player choos」· Java 代码 · 共 16 行

JAVA
16
字号
package expertSystem.exceptions;

public class RuleAlreadyExistsException extends Exception {
public int errorLine;
	
    public RuleAlreadyExistsException(Throwable cause) {
        super(cause);
    }

    public RuleAlreadyExistsException(int _errorLine) {
    	this.errorLine = _errorLine;
    	
    }

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?