customerserviceexception.java
来自「非常经典的ssh整合实例」· 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 + -
显示快捷键?