<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">public class FullListException extends RuntimeException {

    /** Constructor: an exception with no detail message
     */
    public FullListException() {
       super();
    }

    /** Constructor: an exception with detail message s
     */
    public FullListException(String s) {
       super(s);
    }

}</pre></body></html>