Aspose pdf parsing PDF table error

I use aspose pdf to parse pdf table, the code is as follows, reported an error “class com.aspose.pdf.internal.ms.System.l6n: Internal error occured during work of TableAbsorber”

Document doc = new Document("23.pdf");
        for (Page page : doc.getPages()) {
            TableAbsorber tableAbsorber = new TableAbsorber();
            tableAbsorber.visit(page);
            for (AbsorbedTable table : tableAbsorber.getTableList()) {
                for (AbsorbedRow row : table.getRowList()) {
                    for (AbsorbedCell cell : row.getCellList()) {
                        String text = "";
                        for (TextFragment textFragment : cell.getTextFragments()) {
                            text += textFragment.getText();
                        }
                        System.out.println("cell:=========" + text);
                    }
                }
            }
        }

23.pdf (2.1 MB)

@yjsdfsdf
Thank you for writing to us - the error has been reproduced and I will create a task for the development team.

Thank you, may I ask how long it will take for the development team to reply?

@yjsdfsdf
We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.

Issue ID(s): PDFNET-55727

You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.

@yjsdfsdf
We try our best to deal with every customer request in a timely fashion, we unfortunately cannot guarantee a delivery date to every customer issue.
We work on issues on a first come, first served basis. We feel this is the fairest and most appropriate way to satisfy the needs of the majority of our customers.

We will inform you via this forum thread once there is an update available on it.

I am facing the same error, any progress on fixing this issue ?

@brissonp

We are afraid that the earlier logged ticket has not been yet resolved. It will be prioritized on a first come first serve basis and as soon as we make some progress towards its resolution, we will inform you. Please be patient and spare us some time.

We are sorry for the inconvenience.

Is there a way to prioritize this ticket ? Does it need paid support for that ?

@brissonp
Paid support will increase the priority of the task and there will be a different attitude towards its solution.
Since the task was set, changes have been made to the work of TableAbsorber - try with the latest version (24.04) is the error corrected?