|
ErrorAsText
The ErrorAsText function retrieves the textual description of an error based on its internal error number. This can be accessed through the TRY/CATCH custom error handler. Category: Error HandlingSyntax:   string = ErrorAsText( number ErrorNumber ) Description: The ErrorAsText function returns a string representing the error generated by the running procedure or active page based on its internal error number. The TRY/CATCH method can be added to a function or active page to create a custom error handler. In this way when an error occurs the CATCH function will be called with an Error object passed in as its sole parameter. Error information can be accessed via this Error object and utilized within the program. Platforms:   Windows, DOS, Internet Active Pages
|