class MyException extends Exception {
  public MyException(String s) {
    super(s);
  } // end constructor
  // All other methods are inherited. 
  // This exception must be handled in or
  // propagated from the method in which it occurs.
  private final static long serialVersionUID = 2006L;
}  // end MyException
