gatherexception.java

来自「java的团队合作代码」· Java 代码 · 共 26 行

JAVA
26
字号
package com.briup.exception;
/**
 * @author renqs
 * @company Briup Technology Inc,.(Shanghai)
 * @date JUL 2, 2008 2:32:00 PM
 */

public class GatherException extends Exception {

	public GatherException() {
		super();
	}

	public GatherException(String arg0, Throwable arg1) {
		super(arg0, arg1);
	}

	public GatherException(String arg0) {
		super(arg0);
	}

	public GatherException(Throwable arg0) {
		super(arg0);
	}
}

⌨️ 快捷键说明

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