Differences

This shows you the differences between two versions of the page.

Link to this comparison view

mplreport:errors [2025/04/24 05:17]
optrix created
mplreport:errors [2025/04/24 05:19] (current)
optrix
Line 6: Line 6:
  
 You can check to see if there are any errors using the [[FetchFailure]] function.  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.
 +
 +<code>
 +report.Failed("\n".join(report.errors))
 +</code>
 +
 +//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>