customerserviceexception.java

来自「网上书城源代码~~在学习JAVA的时候做的」· Java 代码 · 共 26 行

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

@SuppressWarnings("serial")
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 + -
显示快捷键?