nestedexception.java

来自「高质量Java程序设计 源代码」· Java 代码 · 共 22 行

JAVA
22
字号
package net.betterjava.exception.j2se14;

public class NestedException extends Exception {

	public NestedException() {
		super();
	}

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

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

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

}

⌨️ 快捷键说明

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