This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
jlinkedlist/ListException.java

8 lines
161 B
Java
Raw Permalink Normal View History

2004-02-11 03:00:27 -05:00
public class ListException extends RuntimeException
{
public ListException(String s)
{
super(s);
} // end constructor
} // end ListException