class MyRuntimeException extends RuntimeException {
  public MyRuntimeException(String s) {
    super(s);
  } // end constructor
  
  private final static long serialVersionUID = 2006L; 
  // All other methods are inherited.
} // end MyRuntimeException
