作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
<分区>
我创建了一个扩展 Exception
类的类,我在 Eclipse 上收到了这个警告
The serializable class PhoneAlreadyExists does not declare a static final serialVersionUID field of type long
请问如何删除它?
public class PhoneAlreadyExists extends Exception {
public PhoneAlreadyExists() {
// TODO Auto-generated constructor stub
super();
}
PhoneAlreadyExists(String message) {
super(message);
}
}
我是一名优秀的程序员,十分优秀!