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

📄 endedexception.java

📁 一个搜索引擎,希望对大家有用
💻 JAVA
字号:
/* * Created on Aug 11, 2004 * */package org.archive.crawler.framework.exceptions;/** * Indicates a crawl has ended, either due to operator * termination, frontier exhaustion, or any other reason.  *  * @author gojomo */public class EndedException extends Exception {    // TODO: subclass for various kinds of ends?        /**     * Constructs a new <code>EndedException</code>.     *      * @param message  describes why the crawl ended     */    public EndedException(String message) {        super(message);    }}

⌨️ 快捷键说明

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