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);
    }

}