Exit code: 0XF when converting PDF to Excel

Product: @pdftron/pdfnet-node
Product Version: 10.8.0-1

Please give a brief summary of your issue:
When I am trying to convert PDF file to Excel I am getting an error:
PDFNet is running in demo mode.
Package: office
{
message: ‘Exception: \n’ +
‘\t Message: Exit code: 0XF\n’ +
‘\n’ +
‘\t Conditional expression: exit_code == 0\n’ +
‘\t Version : 10.8.0-842bd75\n’ +
‘\t Platform : Linux\n’ +
‘\t Architecture : AMD64\n’ +
‘\t Filename : SolidStructuredOutput.cpp\n’ +
‘\t Function : DoConvert\n’ +
‘\t Linenumber : 796\n’,
type: ‘PDFWorkerError’
}

Please describe your issue and provide steps to reproduce it:
Run program provided in link below with command:

yarn build && yarn start -l XXX-i example/schedule.pdf -o example/sche
dule.xlsx -c example/config.yaml

Where XXX is license key.

Please provide a link to a minimal sample where the issue is reproducible:

PS:
I am getting the same error for similar program with SDK for Python.

PS2:
await PDFNet.Convert.fileToWord(options.input, options.output); // works fine
await PDFNet.Convert.fileToExcel(options.input, options.output); // throws PDFWorkerError

Thank you for posting the incident to our forum. We will provide you with an update as soon as possible.

Hi Tomasz,

Error 0XF corresponds to the following:
NoTablesToExtract = 15, No tables were found to extract. This will occur when converting to Excel while ignoring non-table content, if only non-table content exists.

I notice from your code that you are only converting the first page that does not contain any tables, can you please add the following option and see if that corrects things:
excelOutputOptions.setNonTableContent(True)