customerserviceexception.java

来自「一个J2EE 做的 网上图书销售管理系统」· Java 代码 · 共 25 行

JAVA
25
字号
package com.briup.common.exception;

public class CustomerServiceException extends Exception {

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

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

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

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

}

⌨️ 快捷键说明

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