groupalreadyexistsexception.java
来自「一套完整的工商12315的源程序jsp部分在12315里,后台JAVA部分在gs」· Java 代码 · 共 19 行
JAVA
19 行
package com.gs.db;
/**
* Thrown when trying to create a group with a name duplicate with the name of
* a existing group.
*
* @see ProfileManager
*/
public class GroupAlreadyExistsException extends Exception {
public GroupAlreadyExistsException() {
super();
}
public GroupAlreadyExistsException(String msg) {
super(msg);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?