java自定义类
我写了个自定义异常,麻烦大神帮我看下哪里不对,谢谢:
package yichang;
public class Zdyych extends Exception {
public Zdyych(String message){
super(message);
}
}
提示错误:The serializable class Zdyych does not declare a static final serialVersionUID field of type long
这个到底是什么问题?
谢谢