/* An instance of this class is for the purpose of signaling ** that an operation upon a ListCursor could not be carried out. ** ** Author: R. McCloskey ** Date: 2025 */ public class ListCursorException extends RuntimeException { public ListCursorException(String message) { super(message); } }