/**
* Create an exception for an empty list
* @author Suzanne Balik, 16 Oct 2001, based on code in
* Java How To Program by Deitel & Deitel
*/
public class EmptyListException extends RuntimeException {
public EmptyListException(String errorMessage){
super(errorMessage);
}
}