⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 reptileruntimeexception.java

📁 java写的搜索引擎网络爬虫 java写的搜索引擎网络爬虫 java写的搜索引擎网络爬虫
💻 JAVA
字号:
/* 
 * FileName ReptileConfigException.java
 * Create Time 2005-8-1 11:23:23
 * Author shiwei
 * Descript ReptileException
 * Version 
 */
package com.snoics.reptile.exception;

public class ReptileRuntimeException extends RuntimeException{

	private static final long serialVersionUID = 6620094831164607182L;

	public ReptileRuntimeException(){
		super();
	}
	
	public ReptileRuntimeException(String exceptionmanager){
		super(exceptionmanager);
	}
	
    public ReptileRuntimeException(Throwable cause) {
        super(cause);
    }
    
    public ReptileRuntimeException(String exceptionmanager, Throwable cause) {
        super(exceptionmanager, cause);
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -