AsposeException is throwing exception when reading data from the iCalender file

Hi Team,
In java code we are trying to read the data from iCalender file using below method.
MapiMessage.fromMailMessage. (Aspose Version 22.6)
We are receiving exception saying "Start date //**** 1:00:00 AM not valid for this rule - Recur every month on the on the 1st set position(s) for a maximum of 1 occurrences. If you want to ignore an exception
and want to proceed further then you can use: ExceptionManager.getIgnoreList().add(“MapiMessage\Load\CalendarToMapiMessage\**********”) "

Below is the complete stack trace.
[Ljava.lang.StackTraceElement;@29c7e16a
at com.aspose.email.MapiCalendarRecurrencePatternFactory.a(SourceFile:487)
at com.aspose.email.MapiCalendarRecurrencePatternFactory.a(SourceFile:343)
at com.aspose.email.MapiMessage.a(SourceFile:4067)
at com.aspose.email.MapiMessage.e(SourceFile:3279)

Please advise.
Thanks

Hello @ashokreddyd ,

Thank you for reporting your case.

Can you please provide us with a problem file for investigation?

Thank you.

Hello @ashokreddyd,

You can use ExceptionManager to ignore error:

Examples:

// ignore all CalendarToMapiMessage errors
ExceptionManager.getIgnoreList().add("MapiMessage\Load\CalendarToMapiMessage");
// ignore all MapiMessage\Load errors
ExceptionManager.getIgnoreList().add("MapiMessage\Load");
// ignore all
ExceptionManager.setIgnoreAll(true);