errors
The errors member of the mplreport class contains an array of all of the errors encountered while retrieving data from ARDI. This includes requests for time-series data and events.
Items in the array are human-readable text that show the specific problems encountered.
You can check to see if there are any errors using the FetchFailure function.
Usage
The most common use is to explain the data-access problems to the user.
report.Failed("\n".join(report.errors))
The above code creates a report containing the default title block, the text 'This Report Is Unavailable', and then a list of the errors encountered by the system. </code>