public class EmptyListException extends RuntimeException {

    public EmptyListException(String s) {
        super(s);
    }
}
