|
Except
The Except function is used to manually generate a user defined error and pass it to the TRY/CATCH customized error handler. Category: Error HandlingSyntax:   null = Except( integer ErrorNumber ) Description: The Except function will create a user-defined exception that is passed to the internal error handling system. A custom error handler can be created utilizing the TRY/CATCH functions. The ErrorNumber parameter can be any number from 0 to 65,535 although users should not use values less than 1000 as these are reserved for the system. In this way customized error numbers can be assigned and passed to user-defined error handlers. Platforms:   Windows, DOS, Internet Active Pages
|