⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 algorithmexception.java

📁 基于词库的中文分词组件
💻 JAVA
字号:
/**
 * 
 */
package org.solol.mmseg.core;

/**
 * @author solo L
 * 
 */
public class AlgorithmException extends Exception {

	/**
	 * Used for serialVersionUID.
	 */
	private static final long serialVersionUID = 2146922148733605861L;

	public AlgorithmException() {
	}

	public AlgorithmException(String message) {
		super(message);
	}

	public AlgorithmException(Throwable cause) {
		super(cause);
	}

	public AlgorithmException(String message, Throwable cause) {
		super(message, cause);
	}

}

⌨️ 快捷键说明

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