endedexception.java

来自「这是个爬虫和lucece相结合最好了」· Java 代码 · 共 28 行

JAVA
28
字号
/* * 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?        private static final long serialVersionUID = -4638427249822262643L;    /**     * 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 + =
减小字号Ctrl + -
显示快捷键?