📄 logicexception.java
字号:
package com.easyjweb.business;
/**
* ��程序逻辑错误��
* @author 大峡������
* @company easyjf.com
*/
public class LogicException extends RuntimeException {
public LogicException() {
super("ϵͳ����������");
}
public LogicException(String msg) {
super(msg);
}
public LogicException(String msg, java.lang.Throwable trw) {
super(msg, trw);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -