/**
 * Exceptions that get thrown for invalid list operations.
 *
 * @author Samuel A. Rebelsky
 * @version 1.0 of April 2000
 */
public class ListException
    extends RuntimeException
{
    /** Create a new exception with no message. */
    public ListException() {
        super();
    } // ListException()

    /** Create a new exception with an accompanying message. */
    public ListException(String message) {
        super(message);
    } // ListException(String)

} // class ListException

