associationexistexception.java

来自「酒店网上预订系统 (网上预订酒店)」· Java 代码 · 共 26 行

JAVA
26
字号
package tarena.netctoss.exception;

public class AssociationExistException extends Exception {

	public AssociationExistException() {
		super();
		// TODO Auto-generated constructor stub
	}

	public AssociationExistException(String arg0, Throwable arg1) {
		super(arg0, arg1);
		// TODO Auto-generated constructor stub
	}

	public AssociationExistException(String arg0) {
		super(arg0);
		// TODO Auto-generated constructor stub
	}

	public AssociationExistException(Throwable arg0) {
		super(arg0);
		// TODO Auto-generated constructor stub
	}

}

⌨️ 快捷键说明

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