Word document gives Error "More than 63 cells per row is not supported for this file format"

Aspose word document gives error when I am trying to save the Word document file again in the different path.

ERROR :

java.lang.IllegalStateException: More than 63 cells per row is not supported for this file format.
	at com.aspose.words.zzXXF.visitRowStart(Unknown Source)
	at com.aspose.words.zzZBz.visitRowStart(Unknown Source)
	at com.aspose.words.Row.zzXh3(Unknown Source)
	at com.aspose.words.CompositeNode.acceptCore(Unknown Source)
	at com.aspose.words.Row.accept(Unknown Source)

Code :

public static void main(String... args) throws Exception {
        com.aspose.words.License license = new com.aspose.words.License();
        license.setLicense("/home/hari/IdeaProject/sirion/service/src/main/resources/aspose-licence");
        Document document = new Document("/home/hari/Downloads/76142.docx");
        FileOutputStream fileOut = new FileOutputStream("/home/hari/Downloads/761421.docx");
        document.save(fileOut,SaveFormat.DOCX);
    }

@hariomgupta73 Could you please attach your input document here for testing? We will check the issue and provide you more information.

@hariomgupta73 Thank you for additional information. But your document is actually corrupted. The reason of corruption is the same as mentioned in the error message generated by Aspose.Words - there are too many cells in one row. MS Word does not allow to create more than 63 cell in one row.
Also, I cannot open your document neither using MS Word not using LibreOffice. What application has been used to create your RTF document?