Output method: Exception class
Syntax
Output()
Description
Use the Output method if you want to display the message associated with the exception to the user (in an online context), or have it logged (if offline). This is analogous to using the MessageBox function to log a message.
Parameters
None.
Returns
If called in an online context, display the message associated with the exception to the user. If called offline, record the exception for later display or analysis.
Example
catch Except2 &Ex2
&Ex2.Output(); /* tell about it */
Related Topics