The global constants for exceptions are listed in the following table.
Global Constant | Integer Value | Description |
---|---|---|
Ex_Abort_Action | 1 | Causes the currently executing methods to be aborted |
Ex_Continue | 0 | Resumes execution from the next expression after the expression that caused the exception |
Ex_Pass_Back | -1 | Passes control back to the prior local exception handler for this type of exception, or if a local handler is not found, a global exception handler for this type of exception |
Ex_Resume_Next | 2 | Passes control back to the method that armed the exception handler |
For more details, see "