I'm creating a Java application, and when creating an interface to use with an ADT, it finds the need to initialize a random number as an ID number.
public class StackFullException extends RuntimeException {
    private static final long serialVersionUID = 1L;
    public StackFullException(){}
    public StackFullException(String message) {
        super(message);
    }
}
I'm curious as to whether leaving this out will impact anything consequential about my program and if so, how to avoid it.
 
     
     
     
     
    