// ----------------------- General Error status -----------------------// /** * Call GetLastError() generated by this object. * Not all functions return an error code but can * potentially report errors. * * This function can be used to retrieve those error codes. * * @return The last ErrorCode generated. */ public ErrorCode GetLastError() { ErrorCode retval = _ll.GetLastError(); return(retval); }