📄 idexistexception.java
字号:
package com.easyjf.web.tools;
/**
* 主键id存在的错误
* @author
*
*/
public class IdExistException extends Exception {
private final static long serialVersionUID = 9888l;
public IdExistException() {
super();
// TODO Auto-generated constructor stub
}
public IdExistException(String arg0) {
super(arg0);
// TODO Auto-generated constructor stub
}
public String getMessage() {
// TODO Auto-generated method stub
return "The ID value has exist!can't save to database;";
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -