All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.zhyd.hunter.exception.HunterException Maven / Gradle / Ivy

Go to download

博客猎手,基于webMagic的博客爬取工具,支持慕课、csdn、iteye、cnblogs、掘金和V2EX等各大主流博客平台。博客千万篇,版权第一条。狩猎不规范,亲人两行泪。

The newest version!
package me.zhyd.hunter.exception;

import me.zhyd.hunter.consts.HunterConsts;

/**
 * @author yadong.zhang (yadong.zhang0415(a)gmail.com)
 * @version 1.0
 * @since 1.8
 */
public class HunterException extends RuntimeException {

    public HunterException(String message) {
        super(HunterConsts.LOG_PREFIX + message);
    }

    public HunterException(String message, Throwable cause) {
        super(HunterConsts.LOG_PREFIX + message, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy