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.
 
 

10 lines
243 B

package com.example.datacollect;
// 解析异常:继承根异常CrawlException
public class ParseException extends CrawlException {
public ParseException(String message) {
super("数据解析失败:" + message);
}
}