// File: LetterQueueException.java
// Time-stamp: "2005-09-17 18:40:03 calvanese"
// Purpose: Written exam 2/2/2005 - BSc in Computer Science (6CFU)
//          solution part 1 - handling of exceptions

public class LetterQueueException extends Exception {
  public LetterQueueException (String msg) {
    super(msg);
  }
}
