Describes how to continue from a runtime error.
typedef enum tagERRORRESUMEACTION {
   ERRORRESUMEACTION_ReexecuteErrorStatement,
   ERRORRESUMEACTION_AbortCallAndReturnErrorToCaller,
   ERRORRESUMEACTION_SkipErrorStatement,
} ERRORRESUMEACTION;
Member  | Description  | 
|---|---|
ERRORRESUMEACTION_ReexecuteErrorStatement  | Re-executes the statement that produced the error.  | 
ERRORRESUMEACTION_AbortCallAndReturnErrorToCaller  | Lets the language engine handle the error.  | 
ERRORRESUMEACTION_SkipErrorStatement  | Resumes execution in the code following the statement that produced the error.  |