You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
292 B
9 lines
292 B
package com.example.datacollect;
|
|
|
|
// 网络异常:继承根异常CrawlException
|
|
public class NetworkException extends CrawlException {
|
|
public NetworkException(String message) {
|
|
// 给错误信息加前缀,方便定位
|
|
super("网络请求失败:" + message);
|
|
}
|
|
}
|
|
|