package ListReferenceBased;

public class ListException extends RuntimeException {
  public ListException(String s) {
    super(s);
  }  // end constructor

  private final static long serialVersionUID = 2006L;
}  // end ListException
