string exception.GetMessage()
Return Type: string
Parameters: none
Description:
GetMessage returns the error message associated with the exception.
Example
Code |
exception
e;
e.SetError("An Error");
string s = e.GetMessage();
disp(s);
|
See exception
for additional examples.
See Also: exception