docmanagerexception.java
来自「真正的网络爬虫的源代码啊,希望大家好好阅读,写出心得体会啊」· Java 代码 · 共 29 行
JAVA
29 行
package net.matuschek.http;
/*********************************************
Copyright (c) 2001 by Daniel Matuschek
*********************************************/
/**
* Exception that will be thrown by HttpDocumentManagers
*
* @author Daniel Matuschek
* @version $Revision: 1.1 $
*/
public class DocManagerException extends Exception {
/**
*
*/
private static final long serialVersionUID = 6535142922610548628L;
/**
* creates a DocManagerException with the given error message
*/
public DocManagerException(String msg) {
super(msg);
}
} // DocManagerException
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?