T
timasmith
If I extend an exception (which can be serialized) do I need to
explicitly implement serializable?
public class MyException extends Exception {
static final long serialVersionUID = 1L;
public MyException(Exception exception){
super(exception);
}
}
thank
Tim
explicitly implement serializable?
public class MyException extends Exception {
static final long serialVersionUID = 1L;
public MyException(Exception exception){
super(exception);
}
}
thank
Tim