// File: ParcelsException.java
// Time-stamp: "2006-02-12 21:53:00 calvanese"
// Purpose: Written exam 8/2/2006 - BSc in Computer Science (8CFU)
//          solution part 1 - handling of exceptions

public class ParcelsException extends Exception {
  public ParcelsException (String msg) {
    super(msg);
  }
}
