com.xuxueli.crawler.exception.XxlCrawlerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xxl-crawler Show documentation
Show all versions of xxl-crawler Show documentation
A distributed web crawler framework.
The newest version!
package com.xuxueli.crawler.exception;
/**
* xxl crawler exception
*
* @author xuxueli 2018-02-05 17:06:25
*/
public class XxlCrawlerException extends RuntimeException {
public XxlCrawlerException() {
super();
}
public XxlCrawlerException(String message) {
super(message);
}
}