4074ada05a13001e1dd9dd943073e196
来自「主要包括有消息的发布、删除、查看消息、查看消息内容、还有一些用户的注册、登录等采」· 代码 · 共 20 行
TXT
20 行
package com.model;
public class InputNotCorrectException extends Exception {
private String errorCode;
private Object[] args;
public InputNotCorrectException(String errorCode) {
this.errorCode = errorCode;
}
public InputNotCorrectException(String errorCode,Object[] args) {
this(errorCode);
this.args = args;
}
public InputNotCorrectException(String errorCode,Object arg) {
this(errorCode,new Object[]{arg});
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?