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

public class QueueEmptyException extends RuntimeException {

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

}

