summaryrefslogtreecommitdiff
path: root/java/EAC/EmptyQueueException.java
blob: 0b2af00c36f18f024b0048ae66b9cc8ee2ca39a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/**
 *  Title:        EmptyQueueException
 *  Description:  An exception class for when an attempt is made to access
 *                the head of the event queue when the queue is empty
 */
package EAC;

public class EmptyQueueException extends Exception {

  public EmptyQueueException(String msg) {
    super(msg);
  }
}