UNB/ CS/ David Bremner/ teaching/ old/ cs1083/ java/ QueueFullException.java
public class QueueFullException
    extends RuntimeException
{
    public QueueFullException(String err){
        super(err);
    }
}