notyetimplementedexception.java

来自「用于JAVA数据库连接.解压就可用,方便得很」· Java 代码 · 共 19 行

JAVA
19
字号
package com.mysql.jdbc.exceptions;

public class NotYetImplementedException extends RuntimeException {

	public NotYetImplementedException() {
		// TODO Auto-generated constructor stub
	}

	public NotYetImplementedException(String reason) {
		super(reason);
		// TODO Auto-generated constructor stub
	}

	public NotYetImplementedException(Throwable cause) {
		super(cause);
		// TODO Auto-generated constructor stub
	}
}

⌨️ 快捷键说明

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