unacceptableexception.java
来自「计算机技术的快速发展」· Java 代码 · 共 26 行
JAVA
26 行
package com.suninformation.user;
/**
* 数据无法接受异常
*
*/
public class UnacceptableException
extends Exception {
public UnacceptableException() {
super();
}
public UnacceptableException(String msg) {
super(msg);
}
public UnacceptableException(Throwable msg) {
super(msg);
}
public UnacceptableException(String msg, Throwable p1) {
super(msg, p1);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?