
// from Goodrich and Tamassia Data Structures and Algorithms in Java
// copyright of authors.

public class QueueFullException extends RuntimeException {

   public QueueFullException(String err) {
      super(err) ;
   }

}

