int exception.GetState() Return Type: int Parameters: none Description: GetState returns the integer state of an exception. See exception for the meaning of the states.
exception e; e.SetError("An Error"); int i = e.GetState(); disp(i);