/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package sumulationsecondlab;

import java.util.LinkedList;

/**
 *
 * @author Student
 */
public class WaitingList extends LinkedList {

       public WaitingList() {
    }

    void add(Event evt) {
        throw new UnsupportedOperationException("Not yet implemented");
    }

}